From bc5752a7c322da9966a126a3e2491eea3a58e1eb Mon Sep 17 00:00:00 2001 From: Peter McGoron Date: Mon, 16 Sep 2024 10:09:09 -0400 Subject: [PATCH] remove debugging code --- dynamicseries.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dynamicseries.py b/dynamicseries.py index 4dc6b70..dbbca13 100644 --- a/dynamicseries.py +++ b/dynamicseries.py @@ -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) -