mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 19:24:27 +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
|
||||
from typing import Awaitable, Callable, ParamSpec, TypeVar
|
||||
from typing import Awaitable, Callable
|
||||
|
||||
import anyio
|
||||
from anyio import to_thread
|
||||
from typing_extensions import ParamSpec, TypeVar
|
||||
|
||||
T_ParamSpec = ParamSpec("T_ParamSpec")
|
||||
T_Retval = TypeVar("T_Retval")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue