From 91f74c4f7b14add31386fedead7eb6bb70f93c1c Mon Sep 17 00:00:00 2001 From: Ian Hunt-Isaak Date: Thu, 1 Jul 2021 09:10:51 -0400 Subject: [PATCH] remove junky prints --- mpl_point_clicker/_clicker.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mpl_point_clicker/_clicker.py b/mpl_point_clicker/_clicker.py index 632a8c2..a13da66 100644 --- a/mpl_point_clicker/_clicker.py +++ b/mpl_point_clicker/_clicker.py @@ -117,14 +117,9 @@ def _update_legend_alpha(self): def _clicked(self, event): if not self._fig.canvas.widgetlock.available(self): return - print('in clicked') if event.inaxes is self.ax: - print('in inaxes') - print(event.button) if event.button is MouseButton.LEFT: - print('in here!') self._positions[self._current_class].append((event.xdata, event.ydata)) - print(self._positions[self._current_class]) self._update_points(self._current_class) elif event.button is MouseButton.RIGHT: pos = self._positions[self._current_class]