Skip to content

Commit

Permalink
Merge PR #560.
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed Jul 24, 2023
2 parents 8369923 + 1b90cde commit c68286b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Library_Usage.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ while True: # Run this until we stop the script with Ctrl+C
if info.serial not in handled_serials: # Unhandled YubiKey
print(f"Programming YubiKey with serial: {info.serial}")
... # Do something with the device here.
handled.add(info.serial)
handled_serials.add(info.serial)
else:
sleep(1.0) # No change, sleep for 1 second.
----

0 comments on commit c68286b

Please sign in to comment.