mirror of https://github.com/coqui-ai/TTS.git
Rename misnamed setter
This commit is contained in:
parent
09e14e68db
commit
861c68b0b8
|
@ -726,8 +726,8 @@ class DelightfulTTS(BaseTTSE2E):
|
||||||
def pitch_std(self):
|
def pitch_std(self):
|
||||||
return self.acoustic_model.pitch_std
|
return self.acoustic_model.pitch_std
|
||||||
|
|
||||||
@pitch_mean.setter
|
@pitch_std.setter
|
||||||
def pitch_std(self, value): # pylint: disable=function-redefined
|
def pitch_std(self, value):
|
||||||
self.acoustic_model.pitch_std = value
|
self.acoustic_model.pitch_std = value
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Reference in New Issue