Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb5ada7 commit cb50c7aCopy full SHA for cb50c7a
1 file changed
lib/matplotlib/backend_bases.py
@@ -2011,7 +2011,8 @@ def inaxes(self, xy):
2011
axes: topmost axes containing the point, or None if no axes.
2012
2013
"""
2014
- axes_list = [a for a in self.figure.get_axes() if a.patch.contains_point(xy)]
+ axes_list = [a for a in self.figure.get_axes()
2015
+ if a.patch.contains_point(xy)]
2016
2017
if axes_list:
2018
axes = cbook._topmost_artist(axes_list)
0 commit comments