Skip to content

Commit 0810b9d

Browse files
committed
STY: pep8 fix
1 parent 0b3f63c commit 0810b9d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/axes/_base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3222,7 +3222,8 @@ def minorticks_on(self):
32223222
ax.set_minor_locator(mticker.LogLocator(s.base, s.subs))
32233223
elif scale == 'symlog':
32243224
s = ax._scale
3225-
ax.set_minor_locator(mticker.SymmetricalLogLocator(s.base, s.subs))
3225+
ax.set_minor_locator(
3226+
mticker.SymmetricalLogLocator(s.base, s.subs))
32263227
else:
32273228
ax.set_minor_locator(mticker.AutoMinorLocator())
32283229

0 commit comments

Comments
 (0)