Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cb50c7a

Browse files
committed
pep8 god.
1 parent bb5ada7 commit cb50c7a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/backend_bases.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2011,7 +2011,8 @@ def inaxes(self, xy):
20112011
axes: topmost axes containing the point, or None if no axes.
20122012
20132013
"""
2014-
axes_list = [a for a in self.figure.get_axes() if a.patch.contains_point(xy)]
2014+
axes_list = [a for a in self.figure.get_axes()
2015+
if a.patch.contains_point(xy)]
20152016

20162017
if axes_list:
20172018
axes = cbook._topmost_artist(axes_list)

0 commit comments

Comments
 (0)