mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
fix(asyncify.py): fix linting errors
This commit is contained in:
parent
2cf149fbad
commit
8d8c961b50
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