From 861c68b0b887e26a3c7a74a83e789310343a54d0 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Wed, 27 Sep 2023 01:07:02 +0300 Subject: [PATCH] Rename misnamed setter --- TTS/tts/models/delightful_tts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TTS/tts/models/delightful_tts.py b/TTS/tts/models/delightful_tts.py index c0a00c66..0ee99930 100644 --- a/TTS/tts/models/delightful_tts.py +++ b/TTS/tts/models/delightful_tts.py @@ -726,8 +726,8 @@ class DelightfulTTS(BaseTTSE2E): def pitch_std(self): return self.acoustic_model.pitch_std - @pitch_mean.setter - def pitch_std(self, value): # pylint: disable=function-redefined + @pitch_std.setter + def pitch_std(self, value): self.acoustic_model.pitch_std = value @property