Skip to content

Commit

Permalink
chore: Fix the warnings.deprecated import in Python 3.13 (#2676)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Sep 16, 2024
1 parent 7f73618 commit 0659295
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 @@ -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:
Expand Down

0 comments on commit 0659295

Please sign in to comment.