mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
relax call argument type (#5056)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user