Skip to content

Commit

Permalink
fixed typing
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Aug 27, 2018
1 parent 23805f3 commit 4aed43f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aw_qt/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def start(self) -> None:
# Don't display a console window on Windows
# See: https://github.com/ActivityWatch/activitywatch/issues/212
if platform.system() == "Windows":
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
startupinfo = subprocess.STARTUPINFO() # type: ignore
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW # type: ignore
else:
startupinfo = None

Expand Down

0 comments on commit 4aed43f

Please sign in to comment.