mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 14:01:55 +08:00
fix eval and call return types (#4451)
This commit is contained in:
@@ -448,8 +448,8 @@ class Tk(Misc, Wm):
|
||||
report_callback_exception: Callable[[Type[BaseException], BaseException, TracebackType], Any]
|
||||
# Tk has __getattr__ so that tk_instance.foo falls back to tk_instance.tk.foo
|
||||
# Please keep in sync with _tkinter.TkappType
|
||||
call: Callable[..., str]
|
||||
eval: Callable[[str], Any]
|
||||
call: Callable[..., Any]
|
||||
eval: Callable[[str], str]
|
||||
adderrorinfo: Any
|
||||
createcommand: Any
|
||||
createfilehandler: Any
|
||||
|
||||
Reference in New Issue
Block a user