Skip to content

Commit 8382a54

Browse files
committed
fix ci
1 parent db20468 commit 8382a54

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/codeboxapi/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@
77
from warnings import warn
88

99
import anyio
10+
import typing_extensions as te
1011
from anyio._core._eventloop import threadlocals
1112

1213
if t.TYPE_CHECKING:
1314
from .types import ExecChunk, ExecResult
1415

1516
T = t.TypeVar("T")
16-
P = t.ParamSpec("P")
17+
P = te.ParamSpec("P")
1718

1819

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

0 commit comments

Comments
 (0)