From 1205f00d52977575c819810aba5cf92e8201dd43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Mon, 16 Sep 2024 11:20:02 -0600 Subject: [PATCH] chore: Fix the `warnings.deprecated` import in Python 3.13 --- 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 31788989b..d4cfd46cd 100644 --- a/singer_sdk/typing.py +++ b/singer_sdk/typing.py @@ -69,7 +69,7 @@ if sys.version_info < (3, 13): from typing_extensions import deprecated else: - from typing import deprecated # noqa: ICN003 # pragma: no cover + from warnings import deprecated # pragma: no cover if t.TYPE_CHECKING: