Skip to content

Commit eb6eace

Browse files
committed
printing only present keys
1 parent e3d64f3 commit eb6eace

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
minor=beac["minor"], txpower=beac["txp"], rssi=beac["rssi"])
3030
allbs[beacon.uuid] = beacon
3131

32-
print allbs["aeae72f5af6749aeac60f27b5b6fa92f"]
33-
print allbs["aeae72f5af6749aeac60f27b5b6fa92f"].getDistance()
32+
for key, _ in allbs.iteritems():
33+
print allbs[key]

0 commit comments

Comments
 (0)