remove debugging code

This commit is contained in:
Peter McGoron 2024-09-16 10:09:09 -04:00
parent 515c83d412
commit bc5752a7c3
1 changed files with 0 additions and 5 deletions

View File

@ -1,5 +1,4 @@
import matplotlib.pyplot as plt
import numpy as np
class DynamicSeries:
def __init__(self, fig, ax, x_lim = [0,10], y_lim = [0,10]):
@ -93,7 +92,3 @@ class DynamicSeries:
self.fig.canvas.blit(self.fig.bbox)
self.fig.canvas.flush_events()
return False
fig, ax = plt.subplots()
d = DynamicSeries(fig, ax)