From 72ff21a36ece702858ade909ee284b0defb9c3c7 Mon Sep 17 00:00:00 2001 From: Tps-F Date: Sun, 27 Aug 2023 16:15:44 +0000 Subject: [PATCH] Apply Code Formatter Change --- tools/infer_cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/infer_cli.py b/tools/infer_cli.py index 4a7dca5..c885a07 100644 --- a/tools/infer_cli.py +++ b/tools/infer_cli.py @@ -1,6 +1,7 @@ import argparse import os import sys + now_dir = os.getcwd() sys.path.append(now_dir) from scipy.io import wavfile @@ -8,6 +9,7 @@ from scipy.io import wavfile from configs.config import Config from infer.modules.vc.modules import VC from dotenv import load_dotenv + #### # USAGE # @@ -57,7 +59,7 @@ def main(): args.resample_sr, args.rms_mix_rate, args.protect, - ) + ) wavfile.write(args.opt_path, wav_opt[0], wav_opt[1])