From 36dcd1145370607302f2c95bca8a8903e9c894d5 Mon Sep 17 00:00:00 2001 From: Edresson Date: Thu, 26 Aug 2021 07:55:41 -0300 Subject: [PATCH] Fix pylint issues --- TTS/tts/models/vits.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/TTS/tts/models/vits.py b/TTS/tts/models/vits.py index ce75d6dd..72c4c892 100644 --- a/TTS/tts/models/vits.py +++ b/TTS/tts/models/vits.py @@ -706,7 +706,6 @@ class Vits(BaseTTS): # generator pass if self.args.fine_tuning_mode: - # model forward outputs = self.forward_fine_tuning( text_input, @@ -961,5 +960,3 @@ class Vits(BaseTTS): if eval: self.eval() assert not self.training - -