10000 Move new params to end of functions · matplotlib/matplotlib@fc63589 · GitHub
[go: up one dir, main page]

Skip to content

Commit fc63589

Browse files
Move new params to end of functions
1 parent be0e8c0 commit fc63589

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ def indicate_inset_zoom(self, inset_ax, **kwargs):
550550
return self.indicate_inset(rect, inset_ax, **kwargs)
551551

552552
@_docstring.dedent_interpd
553-
def secondary_xaxis(self, location, *, transform=None, functions=None, **kwargs):
553+
def secondary_xaxis(self, location, *, functions=None, transform=None, **kwargs):
554554
"""
555555
Add a second x-axis to this `~.axes.Axes`.
556556
@@ -604,7 +604,7 @@ def invert(x):
604604
return secondary_ax
605605

606606
@_docstring.dedent_interpd
607-
def secondary_yaxis(self, location, *, transform=None, functions=None, **kwargs):
607+
def secondary_yaxis(self, location, *, functions=None, transform=None, **kwargs):
608608
"""
609609
Add a second y-axis to this `~.axes.Axes`.
610610

0 commit comments

Comments
 (0)
0