10000 Apply suggestions from code review · matplotlib/matplotlib@353379d · GitHub
[go: up one dir, main page]

Skip to content

Commit 353379d

Browse files
tacaswellQuLogic
andauthored
Apply suggestions from code review
Co-Authored-By: Elliott Sales de Andrade <quantum.analyst@gmail.com>
1 parent 0bb1074 commit 353379d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/colors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,15 +1232,15 @@ def __init__(self, linthresh, linscale=1.0, vmin=None, vmax=None,
12321232
In v3.3 the default value will change to 10 to be consistent with
12331233
`.SymLogNorm`.
12341234
1235-
To suppress the warning pass base as a kwarg.
1235+
To suppress the warning pass *base* as a keyword argument.
12361236
12371237
"""
12381238
Normalize.__init__(self, vmin, vmax, clip)
12391239
if base is None:
12401240
self._base = np.e
12411241
cbook.warn_deprecated("3.3", message="default base may change "
12421242
"from np.e to 10. To suppress this warning specify the base "
1243-
"kwarg.")
1243+
"keyword argument.")
12441244
else:
12451245
self._base = base
12461246
self._log_base = np.log(self._base)

0 commit comments

Comments
 (0)
0