We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a1b1c1 commit 9c16edbCopy full SHA for 9c16edb
1 file changed
CircuitPython_Simple_Wordclock/code.py
@@ -72,7 +72,7 @@ def writetime(the_hr, the_min):
72
value = value | QUARTER
73
if (the_min > 47) and (the_min <= 53):
74
value = value | TENMIN
75
- if the_min => 54:
+ if the_min >= 54:
76
value = value | FIVEMIN
77
# before or after
78
if the_min <= 30:
0 commit comments