Skip to content

Commit

Permalink
Undo changes for addressing deprecation
Browse files Browse the repository at this point in the history
To be added in separate PR
  • Loading branch information
szokeasaurusrex committed Apr 8, 2024
1 parent 7de3007 commit 39ae72f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions sentry_sdk/crons/_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@
from sentry_sdk._types import TYPE_CHECKING

if TYPE_CHECKING:
from collections.abc import Awaitable, Callable
from typing import Any, cast, overload, ParamSpec, TypeVar, Union
from typing import (
Any,
Awaitable,
Callable,
cast,
overload,
ParamSpec,
TypeVar,
Union,
)

P = ParamSpec("P")
R = TypeVar("R")
Expand Down

0 comments on commit 39ae72f

Please sign in to comment.