Skip to content

Commit f26592d

Browse files
committed
Fix coding style
1 parent 3503134 commit f26592d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backend_bases.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3045,7 +3045,7 @@ def release_zoom(self, event):
30453045
# allows the user to "cancel" a zoom action
30463046
# by zooming by less than 5 pixels
30473047
if ((abs(x - lastx) < 5 and self._zoom_mode!="y") or
3048-
(abs(y - lasty) < 5 and self._zoom_mode!="x")):
3048+
(abs(y - lasty) < 5 and self._zoom_mode!="x")):
30493049
self._xypress = None
30503050
self.release(event)
30513051
self.draw()

0 commit comments

Comments
 (0)