Skip to content

Commit 2fe634f

Browse files
authored
[pywin32] win32gui.FindWindowEx parameters __ClassName and __WindowName are optional (#9859)
1 parent a5fc97e commit 2fe634f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/pywin32/win32/win32gui.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def DestroyWindow(_hwnd: int) -> None: ...
135135
def EnableWindow(hWnd: int, bEnable): ...
136136
def FindWindow(__ClassName: _win32typing.PyResourceId | str | None, __WindowName: str | None) -> int: ...
137137
def FindWindowEx(
138-
__Parent: int | None, __ChildAfter: int | None, __ClassName: _win32typing.PyResourceId | str, __WindowName: str
138+
__Parent: int | None, __ChildAfter: int | None, __ClassName: _win32typing.PyResourceId | str | None, __WindowName: str | None
139139
) -> int: ...
140140
def DragAcceptFiles(hwnd: int, fAccept) -> None: ...
141141
def DragDetect(hwnd: int, point: tuple[Incomplete, Incomplete]) -> None: ...

0 commit comments

Comments
 (0)