From 2fe634f01c5501948a919fc5d2d7bfd4c344dd61 Mon Sep 17 00:00:00 2001 From: Benjamin Parzella Date: Thu, 9 Mar 2023 13:56:20 +0100 Subject: [PATCH] [pywin32] win32gui.FindWindowEx parameters __ClassName and __WindowName are optional (#9859) --- stubs/pywin32/win32/win32gui.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/pywin32/win32/win32gui.pyi b/stubs/pywin32/win32/win32gui.pyi index a233e3b4b..8d5055a0a 100644 --- a/stubs/pywin32/win32/win32gui.pyi +++ b/stubs/pywin32/win32/win32gui.pyi @@ -135,7 +135,7 @@ def DestroyWindow(_hwnd: int) -> None: ... def EnableWindow(hWnd: int, bEnable): ... def FindWindow(__ClassName: _win32typing.PyResourceId | str | None, __WindowName: str | None) -> int: ... def FindWindowEx( - __Parent: int | None, __ChildAfter: int | None, __ClassName: _win32typing.PyResourceId | str, __WindowName: str + __Parent: int | None, __ChildAfter: int | None, __ClassName: _win32typing.PyResourceId | str | None, __WindowName: str | None ) -> int: ... def DragAcceptFiles(hwnd: int, fAccept) -> None: ... def DragDetect(hwnd: int, point: tuple[Incomplete, Incomplete]) -> None: ...