mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 03:04:13 +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
|
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