Skip to content

Commit

Permalink
Remove unused type: ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
emotion3459 committed Feb 14, 2025
1 parent e16db3c commit 58e6bfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jetpytools/types/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def __get__(
@wraps(self.function)
def _wrapper(*args: Any, **kwargs: Any) -> Any:
first_arg = (args[0] if args else None) or (
kwargs.get(self.first_key, None) if self.first_key else None # type: ignore
kwargs.get(self.first_key, None) if self.first_key else None
)

if (
Expand Down

0 comments on commit 58e6bfe

Please sign in to comment.