Skip to content

Commit

Permalink
chore: applied no_implicit_optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Jan 11, 2023
1 parent 62f36c1 commit 6fdff0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aw_watcher_window/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_current_window_windows() -> Optional[dict]:
return {"app": app, "title": title}


def get_current_window(strategy: str = None) -> Optional[dict]:
def get_current_window(strategy: Optional[str] = None) -> Optional[dict]:
"""
:raises FatalError: if a fatal error occurs (e.g. unsupported platform, X server closed)
"""
Expand Down

0 comments on commit 6fdff0e

Please sign in to comment.