Remove unused TypeVars (#68155)

This commit is contained in:
Marc Mueller
2022-03-15 08:24:13 +01:00
committed by GitHub
parent 125ab5eb2b
commit ef71ab04ad
2 changed files with 0 additions and 3 deletions

View File

@@ -77,8 +77,6 @@ _T = TypeVar("_T", bound="DlnaDmrEntity")
_R = TypeVar("_R")
_P = ParamSpec("_P")
Func = TypeVar("Func", bound=Callable[..., Any])
def catch_request_errors(
func: Callable[Concatenate[_T, _P], Awaitable[_R]] # type: ignore[misc]

View File

@@ -60,7 +60,6 @@ SUPPORT_VLC = (
)
_T = TypeVar("_T", bound="VlcDevice")
_R = TypeVar("_R")
_P = ParamSpec("_P")