Skip to content

Commit

Permalink
Merge pull request joewalnes#111 from markushx/patch-1
Browse files Browse the repository at this point in the history
Merged fixes for python examples
  • Loading branch information
asergeyev committed Feb 17, 2015
2 parents 3ef457d + 344fa8d commit 9a9dc3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/python/count.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

# Simple example script that counts to 10 at ~2Hz, then stops.
for count in range(0, 10):
print count + 1
sleep(0.5)
print(count + 1)
stdout.flush() # Remember to flush
sleep(0.5)

0 comments on commit 9a9dc3a

Please sign in to comment.