Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b3f63c commit 0810b9dCopy full SHA for 0810b9d
1 file changed
lib/matplotlib/axes/_base.py
@@ -3222,7 +3222,8 @@ def minorticks_on(self):
3222
ax.set_minor_locator(mticker.LogLocator(s.base, s.subs))
3223
elif scale == 'symlog':
3224
s = ax._scale
3225
- ax.set_minor_locator(mticker.SymmetricalLogLocator(s.base, s.subs))
+ ax.set_minor_locator(
3226
+ mticker.SymmetricalLogLocator(s.base, s.subs))
3227
else:
3228
ax.set_minor_locator(mticker.AutoMinorLocator())
3229
0 commit comments