relax call argument type (#5056)

This commit is contained in:
Akuli
2021-02-23 12:26:27 +02:00
committed by GitHub
parent c8df617726
commit 507ca60ff8

View File

@@ -39,7 +39,7 @@ class TclError(Exception): ...
# Tkapp_UnicodeResult, and it returns a string when it succeeds.
class TkappType:
# Please keep in sync with tkinter.Tk
def call(self, __command: Union[str, Tuple[Any, ...]], *args: Any) -> Any: ...
def call(self, __command: Any, *args: Any) -> Any: ...
def eval(self, __script: str) -> str: ...
adderrorinfo: Any
createcommand: Any