Skip to content

Commit 9f9bd82

Browse files
author
Pascal Deneaux
authored
remove the flush=True argument
it causes a failure in Circuitpython
1 parent 915b2e2 commit 9f9bd82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pn532_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
while True:
4949
# Check if a card is available to read
5050
uid = pn532.read_passive_target(timeout=0.5)
51-
print('.', end="", flush=True)
51+
print('.', end="")
5252
# Try again if no card is available.
5353
if uid is None:
5454
continue

0 commit comments

Comments
 (0)