Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
saranti committed Apr 25, 2023
1 parent 9eddce3 commit 0ddf595
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/matplotlib/axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,11 @@ def __init__(
self.label1 = mtext.Text(
np.nan, np.nan,
fontsize=labelsize, color=labelcolor, visible=label1On,
fontproperties=labelfontfamily, rotation=self._labelrotation[1])
fontfamily=labelfontfamily, rotation=self._labelrotation[1])
self.label2 = mtext.Text(
np.nan, np.nan,
fontsize=labelsize, color=labelcolor, visible=label2On,
fontproperties=labelfontfamily, rotation=self._labelrotation[1])
fontfamily=labelfontfamily, rotation=self._labelrotation[1])

self._apply_tickdir(tickdir)

Expand Down

0 comments on commit 0ddf595

Please sign in to comment.