Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 816cc4f

Browse filesBrowse files
committed
FIX: Change get_axis_map to axis_map now
These locations were missed in a merge, so update them to the new name.
1 parent cb8680f commit 816cc4f
Copy full SHA for 816cc4f

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎lib/matplotlib/axes/_base.py

Copy file name to clipboardExpand all lines: lib/matplotlib/axes/_base.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2579,7 +2579,7 @@ def in_axes(self, mouseevent):
25792579
def get_autoscale_on(self):
25802580
"""Return True if each axis is autoscaled, False otherwise."""
25812581
return all(axis._get_autoscale_on()
2582-
for axis in self._get_axis_map().values())
2582+
for axis in self._axis_map.values())
25832583

25842584
def set_autoscale_on(self, b):
25852585
"""
@@ -2590,7 +2590,7 @@ def set_autoscale_on(self, b):
25902590
----------
25912591
b : bool
25922592
"""
2593-
for axis in self._get_axis_map().values():
2593+
for axis in self._axis_map.values():
25942594
axis._set_autoscale_on(b)
25952595

25962596
@property

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.