From eb5b0f80bbd9d24286b901666c1f062f5cfa5c4a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 21 Aug 2024 13:52:36 +0000 Subject: [PATCH] chore(format): run black on main --- rvc/lib/utils.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/rvc/lib/utils.py b/rvc/lib/utils.py index 2edb04e1..a53810dc 100644 --- a/rvc/lib/utils.py +++ b/rvc/lib/utils.py @@ -62,10 +62,14 @@ def load_audio_infer( command = [ stft, - "-i", temp_file_path, - "-q", str(formant_qfrency), - "-t", str(formant_timbre), - "-o", f"{temp_file_path}_formatted.wav" + "-i", + temp_file_path, + "-q", + str(formant_qfrency), + "-t", + str(formant_timbre), + "-o", + f"{temp_file_path}_formatted.wav", ] subprocess.run(command, shell=True) formatted_audio_path = f"{temp_file_path}_formatted.wav"