Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5552977

Browse files
committed
Fixed variable typo in axes.ticklabel_format() for useLocale
1 parent e85c93b commit 5552977

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2127,7 +2127,7 @@ def ticklabel_format(self, **kwargs):
21272127
style = kwargs.pop('style', '').lower()
21282128
scilimits = kwargs.pop('scilimits', None)
21292129
useOffset = kwargs.pop('useOffset', None)
2130-
use_locale = kwargs.pop('useLocale', None)
2130+
useLocale = kwargs.pop('useLocale', None)
21312131
axis = kwargs.pop('axis', 'both').lower()
21322132
if scilimits is not None:
21332133
try:

0 commit comments

Comments
 (0)