Commit 4863d03c73a3a6d36fefb0830494d3187255f65b

Authored by Christopher Stone
1 parent 6dbc3a2c
Exists in master

Fixed obvious bug in serial polling code

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
telemetry/code/monitor/graph_plotter_rewrite.py
... ... @@ -26,7 +26,7 @@ class Series:
26 26 def addpoint(self, point):
27 27 self.data.append(point)
28 28 if len(self.data) > self.points:
29   - del self.points[-1]
  29 + del self.data[0]
30 30  
31 31 class Plot(pyglet.window.Window):
32 32 def __init__(self, series):
... ...