We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f01878 commit 2aa72c3Copy full SHA for 2aa72c3
ahkpy/window.py
@@ -93,7 +93,7 @@ def filter(self, title=UNSET, *, class_name=UNSET, id=UNSET, pid=UNSET, exe=UNSE
93
"""
94
return self._filter(title, class_name, id, pid, exe, text, match)
95
96
- def _filter(self, title, class_name, id, pid, exe, text, match):
+ def _filter(self, title, class_name, id, pid, exe, text, match) -> 'Windows':
97
if (
98
title is UNSET and class_name is UNSET and id is UNSET and pid is UNSET and exe is UNSET and
99
text is UNSET and match is None
0 commit comments