Skip to content

Commit 1a73069

Browse files
committed
Fix an error that check sys.platform in WIN32 not win32
Fix an error that check sys.platform in WIN32 not win32
1 parent 0e506d1 commit 1a73069

File tree

3 files changed

+40
-43
lines changed

3 files changed

+40
-43
lines changed

.idea/workspace.xml

Lines changed: 38 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

je_auto_control/windows/core/utils/win32_vk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from je_auto_control.utils.exception.exception_tags import windows_import_error
44
from je_auto_control.utils.exception.exceptions import AutoControlException
55

6-
if sys.platform not in ["WIN32", "cygwin", "msys"]:
6+
if sys.platform not in ["win32", "cygwin", "msys"]:
77
raise AutoControlException(windows_import_error)
88

99
# windows mouse virtual keycode

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_auto_control_dev"
9-
version = "0.0.123"
9+
version = "0.0.124"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]

0 commit comments

Comments
 (0)