Skip to content

Commit 91f74c4

Browse files
committed
remove junky prints
1 parent 54ca152 commit 91f74c4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

mpl_point_clicker/_clicker.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,9 @@ def _update_legend_alpha(self):
117117
def _clicked(self, event):
118118
if not self._fig.canvas.widgetlock.available(self):
119119
return
120-
print('in clicked')
121120
if event.inaxes is self.ax:
122-
print('in inaxes')
123-
print(event.button)
124121
if event.button is MouseButton.LEFT:
125-
print('in here!')
126122
self._positions[self._current_class].append((event.xdata, event.ydata))
127-
print(self._positions[self._current_class])
128123
self._update_points(self._current_class)
129124
elif event.button is MouseButton.RIGHT:
130125
pos = self._positions[self._current_class]

0 commit comments

Comments
 (0)