Skip to content

Commit

Permalink
Merge pull request #16 from Tasm-Devil/master
Browse files Browse the repository at this point in the history
remove the flush=True argument
  • Loading branch information
jerryneedell authored Feb 3, 2019
2 parents 915b2e2 + 9f9bd82 commit c8acb3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/pn532_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
while True:
# Check if a card is available to read
uid = pn532.read_passive_target(timeout=0.5)
print('.', end="", flush=True)
print('.', end="")
# Try again if no card is available.
if uid is None:
continue
Expand Down

0 comments on commit c8acb3f

Please sign in to comment.