Fix pos-only params in tkinter module (#11506)

This commit is contained in:
Nikita Sobolev
2024-02-29 12:02:02 +03:00
committed by GitHub
parent 217166b8a9
commit 7b4c751abb

View File

@@ -665,7 +665,9 @@ class Wm:
iconmask = wm_iconmask
def wm_iconname(self, newName: Incomplete | None = None) -> str: ...
iconname = wm_iconname
def wm_iconphoto(self, default: bool, __image1: _PhotoImageLike | str, *args: _PhotoImageLike | str) -> None: ...
def wm_iconphoto(
self, default: bool, *args: Unpack[tuple[_PhotoImageLike | str, Unpack[tuple[_PhotoImageLike | str, ...]]]]
) -> None: ...
iconphoto = wm_iconphoto
def wm_iconposition(self, x: int | None = None, y: int | None = None) -> tuple[int, int] | None: ...
iconposition = wm_iconposition