Rename misnamed setter

pull/3003/head
Aarni Koskela 2023-09-27 01:07:02 +03:00
parent 09e14e68db
commit 861c68b0b8
1 changed files with 2 additions and 2 deletions

View File

@ -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