Skip to content

Commit

Permalink
small example cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
todbot committed Aug 21, 2023
1 parent c3c31d3 commit 805e271
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions examples/microosc_simplesend.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ def test_low_level():

i = 100
while True:
print("hi")
msg.args[0] = i * 0.01
msg.args[0] = i * 0.01 # move the value a bit

pkt_size = osc_client.send(msg)
print("packet_size sent:", pkt_size, "msg:", msg)
Expand Down
3 changes: 1 addition & 2 deletions examples/microosc_simplesend_cpython.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ def test_low_level():

i = 100
while True:
print("hi")
msg.args[0] = i * 0.01
msg.args[0] = i * 0.01 #move the value a bit

pkt_size = osc_client.send(msg)
print("packet_size sent:", pkt_size, "msg:", msg)
Expand Down

0 comments on commit 805e271

Please sign in to comment.