Skip to content

Commit

Permalink
Attempt to fix issues with GitLab actions (take 2).
Browse files Browse the repository at this point in the history
  • Loading branch information
justinbeetle committed Feb 10, 2024
1 parent 71e0de3 commit 441d894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pydw/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def main() -> None:
)

# On Windows, change the app user model so that Windows doesn't use the Python icon in the taskbar.
if sys.platform in ("win32", "cygwin"):
if sys.platform == "win32" or sys.platform == "cygwin":
import ctypes

ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID("pydw")
Expand Down

0 comments on commit 441d894

Please sign in to comment.