Commit 1 of 2, code refactor and cleanup.

This commit is contained in:
Storm Dragon
2025-06-08 13:49:22 -04:00
parent 6ad11effc6
commit ddc1b43304
260 changed files with 6 additions and 1505 deletions

View File

@ -57,7 +57,7 @@ class speechDriver():
if not isinstance(pitch, float):
return
if pitch < 0.0:
retrun
return
if pitch > 1.0:
return
self.pitch = pitch
@ -67,7 +67,7 @@ class speechDriver():
if not isinstance(rate, float):
return
if rate < 0.0:
retrun
return
if rate > 1.0:
return
self.rate = rate
@ -96,7 +96,7 @@ class speechDriver():
if not isinstance(volume,float):
return
if volume < 0.0:
retrun
return
if volume > 1.0:
return
self.volume = volume