Skip to content

Commit

Permalink
TYP: Fix new typing failures
Browse files Browse the repository at this point in the history
  • Loading branch information
has2k1 committed May 24, 2024
1 parent 7ce3de9 commit 4a83f31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mizani/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,8 @@ class identity_trans(trans):
"""

transform_is_linear = True
transform = staticmethod(identity)
inverse = staticmethod(identity)
transform = staticmethod(identity) # type: ignore
inverse = staticmethod(identity) # type: ignore


class reverse_trans(trans):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dev = [
]

typing = [
"pyright==1.1.362",
"pyright==1.1.364",
"pandas-stubs",
]

Expand Down

0 comments on commit 4a83f31

Please sign in to comment.