Skip to content

Commit 198f317

Browse files
committed
remove spinner to pacify pylint
1 parent 6f9e497 commit 198f317

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

CircuitPython_qr_io/code.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,6 @@
103103
display.show(g)
104104
display.auto_refresh = False
105105

106-
i = 0
107-
spin = ".oOo"
108106
old_payload = None
109107
while True:
110108
cam.capture(bitmap)
@@ -126,10 +124,6 @@
126124
except OSError as e:
127125
print(e)
128126
mqtt_client.reconnect()
129-
old_payload = payload
130-
else:
131-
print(end="+")
132-
print(spin[(i := (i + 1) % len(spin))], end="\10")
133127

134128
# Clear out the odd bytes, so that the bitmap displays as greyscale
135129
view[1::2] = 0

0 commit comments

Comments
 (0)