Skip to content

Commit

Permalink
fix print in example
Browse files Browse the repository at this point in the history
  • Loading branch information
gregjhogan committed Nov 17, 2019
1 parent 02d579a commit d44b562
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/query_fw_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
print("results:")
if len(results.items()):
for addr, resp in results.items():
for id, dat in resp.items():
print(hex(addr), hex(id), dat.decode())
for rid, dat in resp.items():
print(hex(addr), hex(rid), dat.decode())
else:
"no fw versions found!"
print("no fw versions found!")

0 comments on commit d44b562

Please sign in to comment.