Skip to content

Commit 0a79593

Browse files
committed
Fixed flake8 complains
1 parent 357c046 commit 0a79593

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_wx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ def _mpl_coords(self, pos=None):
717717
# flip y so y=0 is bottom of canvas
718718
if not wx.Platform == '__WXMSW__':
719719
scale = self.GetDPIScaleFactor()
720-
return x*scale, self.figure.bbox.height- y*scale
720+
return x*scale, self.figure.bbox.height - y*scale
721721
else:
722722
return x, self.figure.bbox.height - y
723723

0 commit comments

Comments
 (0)