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 e4ce92f commit adb4d87Copy full SHA for adb4d87
lib/matplotlib/scale.py
@@ -327,6 +327,9 @@ def inverted(self):
327
return InvertedSymmetricalLogTransform(self.base, self.linthresh,
328
self.linscale)
329
330
+ def __str__(self):
331
+ return "{}".format(type(self).__name__)
332
+
333
334
class InvertedSymmetricalLogTransform(Transform):
335
input_dims = 1
@@ -359,6 +362,9 @@ def inverted(self):
359
362
return SymmetricalLogTransform(self.base,
360
363
self.linthresh, self.linscale)
361
364
365
366
367
368
369
class SymmetricalLogScale(ScaleBase):
370
"""
0 commit comments