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

Skip to content

Commit 22d036e

Browse files
authored
Merge pull request #25232 from YDX-2147483647/patch-1
Remove a redundant comma in `AsinhScale`
2 parents 50fc5dd + 0534ee5 commit 22d036e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/scale.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ def set_default_locators_and_formatters(self, axis):
576576
if self._base > 1:
577577
axis.set_major_formatter(LogFormatterSciNotation(self._base))
578578
else:
579-
axis.set_major_formatter('{x:.3g}'),
579+
axis.set_major_formatter('{x:.3g}')
580580

581581

582582
class LogitTransform(Transform):

0 commit comments

Comments
 (0)