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

Skip to content

Commit e6caa29

Browse files
authored
Merge pull request #16452 from anntzer/ilt
Don't make InvertedLogTransform inherit from deprecated base class.
2 parents 55112ff + 58e2af1 commit e6caa29

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
@@ -314,7 +314,7 @@ def inverted(self):
314314
return InvertedLogTransform(self.base)
315315

316316

317-
class InvertedLogTransform(InvertedLogTransformBase):
317+
class InvertedLogTransform(Transform):
318318
input_dims = output_dims = 1
319319

320320
def __init__(self, base):

0 commit comments

Comments
 (0)