Skip to content

Commit

Permalink
chore: Bump mypy to 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Dec 22, 2024
1 parent ea4ad90 commit 920d630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singer_sdk/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def __get__(self, instance: P, owner: type[P]) -> t.Any: # noqa: ANN401
The property value.
"""
if instance is None:
instance = owner() # type: ignore[unreachable]
instance = owner()
return self.fget(instance)


Expand Down

0 comments on commit 920d630

Please sign in to comment.