From ed4983a33d96461d226fe55c11c969f02dd10c40 Mon Sep 17 00:00:00 2001 From: EddieEngineers Date: Sat, 27 May 2023 12:21:30 -0700 Subject: [PATCH] Change default value --- lib/matplotlib/axes/_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/axes/_base.py b/lib/matplotlib/axes/_base.py index fb04d917720f..d1fcb7da9aa5 100644 --- a/lib/matplotlib/axes/_base.py +++ b/lib/matplotlib/axes/_base.py @@ -3188,7 +3188,7 @@ def grid(self, visible=None, which='major', axis='both', **kwargs): if axis in ['y', 'both']: self.yaxis.grid(visible, which=which, **kwargs) - def ticklabel_format(self, *, axis='both', style='', scilimits=None, + def ticklabel_format(self, *, axis='both', style=None, scilimits=None, useOffset=None, useLocale=None, useMathText=None): r""" Configure the `.ScalarFormatter` used by default for linear Axes.