From 5b2c6534c9b2ef0e7d34798c0236f6d5d9f5a5ed Mon Sep 17 00:00:00 2001 From: Eren G??lge Date: Wed, 24 May 2023 00:27:19 +0200 Subject: [PATCH] Fixup --- tests/inference_tests/test_python_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/inference_tests/test_python_api.py b/tests/inference_tests/test_python_api.py index 12cecd94..07e67967 100644 --- a/tests/inference_tests/test_python_api.py +++ b/tests/inference_tests/test_python_api.py @@ -83,7 +83,7 @@ if is_coqui_available: wav = tts.tts(text="This is a test.", speed=2.0, emotion="Sad") self.assertGreater(len(wav), 0) - def test_fairseq_model(self): + def test_fairseq_model(self): # pylint: disable=no-self-use tts = TTS(model_name="tts_models/eng/fairseq/vits") tts.tts_to_file(text="This is a test.")