Skip to content

Commit

Permalink
[1805] Update Prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
Rixxan committed Jul 22, 2024
1 parent 5c5682d commit 759fc12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EDMarketConnector.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def enumwindowsproc(window_handle, l_param): # noqa: CCR001
# class name limited to 256 - https://msdn.microsoft.com/en-us/library/windows/desktop/ms633576
cls = create_unicode_buffer(257)
# This conditional is exploded to make debugging slightly easier
if win32gui.GetClassName(window_handle, cls, 257):
if win32gui.GetClassName(window_handle):
if cls.value == 'TkTopLevel':
if window_title(window_handle) == applongname:
if GetProcessHandleFromHwnd(window_handle):
Expand Down

0 comments on commit 759fc12

Please sign in to comment.