From 0535d7d3a8593caf3302895633aed7bb18aae9bc Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Sat, 26 Sep 2020 01:38:50 -0400 Subject: [PATCH] Remove debug print statement --- turntable/gui.py | 1 - 1 file changed, 1 deletion(-) diff --git a/turntable/gui.py b/turntable/gui.py index 697b66f..12e4f6e 100644 --- a/turntable/gui.py +++ b/turntable/gui.py @@ -56,7 +56,6 @@ class Plot: if len(data) == 0: return - print((np.min(data), np.max(data))) nlines = self.width // 4 data = np.mean( np.reshape(data[: len(data) // nlines * nlines], (-1, len(data) // nlines)),