Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Oct 30, 2024
1 parent db20468 commit 8382a54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/codeboxapi/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
from warnings import warn

import anyio
import typing_extensions as te
from anyio._core._eventloop import threadlocals

if t.TYPE_CHECKING:
from .types import ExecChunk, ExecResult

T = t.TypeVar("T")
P = t.ParamSpec("P")
P = te.ParamSpec("P")


def deprecated(message: str) -> t.Callable[[t.Callable[P, T]], t.Callable[P, T]]:
Expand Down

0 comments on commit 8382a54

Please sign in to comment.