diff --git a/stdlib/3/tkinter/__init__.pyi b/stdlib/3/tkinter/__init__.pyi index 26a8dcd21..204a1aead 100644 --- a/stdlib/3/tkinter/__init__.pyi +++ b/stdlib/3/tkinter/__init__.pyi @@ -236,15 +236,15 @@ class Misc: def getint(self, s): ... def getdouble(self, s): ... def getboolean(self, s): ... - def focus_set(self): ... - focus: Any - def focus_force(self): ... - def focus_get(self): ... - def focus_displayof(self): ... - def focus_lastfor(self): ... - def tk_focusFollowsMouse(self): ... - def tk_focusNext(self): ... - def tk_focusPrev(self): ... + def focus_set(self) -> None: ... + focus = focus_set + def focus_force(self) -> None: ... + def focus_get(self) -> Optional[Misc]: ... + def focus_displayof(self) -> Optional[Misc]: ... + def focus_lastfor(self) -> Optional[Misc]: ... + def tk_focusFollowsMouse(self) -> None: ... + def tk_focusNext(self) -> Optional[Misc]: ... + def tk_focusPrev(self) -> Optional[Misc]: ... @overload def after(self, ms: int, func: None = ...) -> None: ... @overload