From cc261db606244de99910bdf8695200dda3fdc07d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 27 Sep 2021 12:02:23 +0530 Subject: [PATCH] ... --- kitty/types.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kitty/types.py b/kitty/types.py index 33dcdb2ae..af6e667ae 100644 --- a/kitty/types.py +++ b/kitty/types.py @@ -120,5 +120,4 @@ def ac(group: ActionGroup, doc: str) -> Callable[[_T], _T]: return w -_BaseDecoratedFunc = Callable[..., Any] -DecoratedFunc = TypeVar('DecoratedFunc', bound=_BaseDecoratedFunc) +DecoratedFunc = TypeVar('DecoratedFunc', bound=Callable[..., Any])