diff --git a/singer_sdk/typing.py b/singer_sdk/typing.py index 336eb6995..338973d9d 100644 --- a/singer_sdk/typing.py +++ b/singer_sdk/typing.py @@ -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)