mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
fix(asyncify.py): fix linting errors
This commit is contained in:
parent
07dd3c640b
commit
d12ec470f7
1 changed files with 2 additions and 1 deletions
|
@ -1,8 +1,9 @@
|
||||||
import functools
|
import functools
|
||||||
from typing import Awaitable, Callable, ParamSpec, TypeVar
|
from typing import Awaitable, Callable
|
||||||
|
|
||||||
import anyio
|
import anyio
|
||||||
from anyio import to_thread
|
from anyio import to_thread
|
||||||
|
from typing_extensions import ParamSpec, TypeVar
|
||||||
|
|
||||||
T_ParamSpec = ParamSpec("T_ParamSpec")
|
T_ParamSpec = ParamSpec("T_ParamSpec")
|
||||||
T_Retval = TypeVar("T_Retval")
|
T_Retval = TypeVar("T_Retval")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue