We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19b12e9 commit e6d6794Copy full SHA for e6d6794
CircuitPython_Talking_Adabot_Clock/code.py
@@ -118,7 +118,7 @@ def prep_clock(hour_num, minute_num):
118
print(minute_num)
119
# if it's a single digit number, bring in the "oh" wave file
120
if minute_num <= 9:
121
- mm = min_sounds.index(f'/clock_sounds/m0x.wav')
+ mm = min_sounds.index('/clock_sounds/m0x.wav')
122
open_audio(min_sounds, mm)
123
m = min_sounds.index(f'/clock_sounds/m{minute_num}.wav')
124
# otherwise, for minutes 21-59 that are not divisible by 10
0 commit comments