8000 Fix super · matplotlib/matplotlib@bb39fa6 · GitHub
[go: up one dir, main page]

Skip to content

Commit bb39fa6

Browse files
committed
Fix super
1 parent 39358b2 commit bb39fa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/projections/polar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ class RadialAxis(maxis.YAxis):
718718
axis_name = 'radius'
719719

720720
def __init__(self, *args, **kwargs):
721-
super().__init__(*args, **kwargs)
721+
super(RadialAxis, self).__init__(*args, **kwargs)
722722
self.sticky_edges.y.append(0)
723723

724724
def _get_tick(self, major):

0 commit comments

Comments
 (0)
0