From 65860a954a9e9642a8c8f704cf3af31a04c8bb44 Mon Sep 17 00:00:00 2001 From: Edresson Date: Wed, 5 May 2021 07:15:36 -0300 Subject: [PATCH] remove unused vars on test glow tts --- tests/test_glow_tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_glow_tts.py b/tests/test_glow_tts.py index e71c167a..7e17ed45 100644 --- a/tests/test_glow_tts.py +++ b/tests/test_glow_tts.py @@ -174,7 +174,7 @@ class GlowTTSInferenceTest(unittest.TestCase): print(" > Num parameters for GlowTTS model:%s" % (count_parameters(model))) # inference encoder and decoder with MAS - y, _, _, _, _, _, _ = model.inference_with_MAS( + y, *_ = model.inference_with_MAS( input_dummy, input_lengths, mel_spec, mel_lengths, None )