Skip to content

Commit c8acb3f

Browse files
authored
Merge pull request #16 from Tasm-Devil/master
remove the flush=True argument
2 parents 915b2e2 + 9f9bd82 commit c8acb3f

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)