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 4801cbc

Browse filesBrowse files
committed
Skip extra Axis.cla in PolarAxes.__init__ also.
1 parent 72821af commit 4801cbc
Copy full SHA for 4801cbc

File tree

Expand file treeCollapse file tree

1 file changed

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

1 file changed

+2
-0
lines changed

‎lib/matplotlib/projections/polar.py

Copy file name to clipboardExpand all lines: lib/matplotlib/projections/polar.py
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,10 @@ def __init__(self, *args, **kwargs):
245245
If you need to interpolate data points, consider running
246246
cbook.simple_linear_interpolation on the data before passing to matplotlib.""")
247247
Axes.__init__(self, *args, **kwargs)
248+
self._in_init = True
248249
self.set_aspect('equal', adjustable='box', anchor='C')
249250
self.cla()
251+
self._in_init = False
250252
__init__.__doc__ = Axes.__init__.__doc__
251253

252254
def cla(self):

0 commit comments

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