We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c16edb commit de0d1c2Copy full SHA for de0d1c2
1 file changed
CircuitPython_Simple_Wordclock/code.py
@@ -45,6 +45,8 @@
45
TWENTY = 1<<19
46
47
# Pass in hour and minute, return LED bitmask
48
+# pylint: disable=too-many-branches
49
+# pylint: disable=too-many-statements
50
def writetime(the_hr, the_min):
51
value = 0 # Start with zero, which is no words
52
if (the_hr == 24) and (the_min == 0): # Special cases: Midnight and Noon
@@ -111,6 +113,8 @@ def writetime(the_hr, the_min):
111
113
value = value | NOON
112
114
return value
115
# end def
116
+# pylint: enable=too-many-branches
117
+# pylint: enable=too-many-statements
118
119
# Main loop
120
LEDstate = 0
0 commit comments