From d00327d6084717f4bfa0e111033816f9a16869d9 Mon Sep 17 00:00:00 2001 From: WeberJulian Date: Fri, 25 Mar 2022 09:28:17 +0100 Subject: [PATCH] Fix style --- tests/tts_tests/test_tacotron2_train_fsspec_path.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/tts_tests/test_tacotron2_train_fsspec_path.py b/tests/tts_tests/test_tacotron2_train_fsspec_path.py index 0df900c0..4f37ef89 100644 --- a/tests/tts_tests/test_tacotron2_train_fsspec_path.py +++ b/tests/tts_tests/test_tacotron2_train_fsspec_path.py @@ -48,8 +48,6 @@ run_cli(command_train) continue_path = max(glob.glob(os.path.join(output_path, "*/")), key=os.path.getmtime) # restore the model and continue training for one more epoch -command_train = ( - f"CUDA_VISIBLE_DEVICES='{get_device_id()}' python TTS/bin/train_tts.py --continue_path {continue_path} " -) +command_train = f"CUDA_VISIBLE_DEVICES='{get_device_id()}' python TTS/bin/train_tts.py --continue_path {continue_path} " run_cli(command_train) shutil.rmtree(continue_path)