From 69fbd07facf06e1e0de0423238517e9ad182dcc3 Mon Sep 17 00:00:00 2001 From: James Westman Date: Wed, 27 Oct 2021 12:39:40 -0500 Subject: [PATCH] fix type check --- gtkblueprinttool/lsp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtkblueprinttool/lsp.py b/gtkblueprinttool/lsp.py index e326315..2934b03 100644 --- a/gtkblueprinttool/lsp.py +++ b/gtkblueprinttool/lsp.py @@ -34,7 +34,7 @@ def command(json_method): class LanguageServer: - commands: T.Dict[str, T.Callable[[LanguageServer, T.Union[str, int], T.Any], None]] = {} + commands: T.Dict[str, T.Callable] = {} def __init__(self): self.client_capabilities = {}