From 920d630a98fc836833ff669eb41945c861b7fb22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Sun, 22 Dec 2024 11:18:05 -0600 Subject: [PATCH] chore: Bump mypy to 1.14.0 --- singer_sdk/typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)