Faster range

main
Bob Mottram 2021-03-03 21:21:17 +00:00
parent 838c943b16
commit a8df0dab80
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ def getSpeakerRate(displayName: str, screenreader: str) -> int:
""" """
random.seed(displayName) random.seed(displayName)
if screenreader == 'picospeaker': if screenreader == 'picospeaker':
return random.randint(-50, -40) return random.randint(-40, -20)
return random.randint(50, 120) return random.randint(50, 120)