Commit 21ddadaabc090f1aa44a82b83232317ac98112ef

Authored by Christopher Stone
1 parent 5a40c183
Exists in master

Added a comment about the mysteriously required argument of pollSerial

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
telemetry/code/monitor/graph_plotter_rewrite.py
@@ -37,6 +37,7 @@ plots = [] @@ -37,6 +37,7 @@ plots = []
37 plots.append(Plot("This is a test plot")) 37 plots.append(Plot("This is a test plot"))
38 38
39 def pollSerial(foo): 39 def pollSerial(foo):
  40 + # Note, foo seems to be a float
40 pass 41 pass
41 42
42 pyglet.clock.schedule_interval(pollSerial, 0.1) 43 pyglet.clock.schedule_interval(pollSerial, 0.1)