Skip to content

Commit 82c7356

Browse files
committed
Refactor
Refactor
1 parent 3f2fdf4 commit 82c7356

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.idea/workspace.xml

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

je_auto_control/linux_with_x11/core/utils/x11_linux_vk.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
from je_auto_control.utils.exception.exception_tags import linux_import_error
44
from je_auto_control.utils.exception.exceptions import AutoControlException
5-
from je_auto_control.utils.logging.loggin_instance import auto_control_logger
65

76
if sys.platform not in ["linux", "linux2"]:
87
raise AutoControlException(linux_import_error)
@@ -195,4 +194,3 @@
195194
x11_linux_key_8 = display.keysym_to_keycode(XK.string_to_keysym("8"))
196195
x11_linux_key_9 = display.keysym_to_keycode(XK.string_to_keysym("9"))
197196
x11_linux_key_0 = display.keysym_to_keycode(XK.string_to_keysym("0"))
198-

je_auto_control/linux_with_x11/keyboard/x11_linux_keyboard_control.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
from je_auto_control.utils.exception.exception_tags import linux_import_error
55
from je_auto_control.utils.exception.exceptions import AutoControlException
6-
from je_auto_control.utils.logging.loggin_instance import auto_control_logger
76

87
if sys.platform not in ["linux", "linux2"]:
98
raise AutoControlException(linux_import_error)
@@ -29,4 +28,3 @@ def release_key(keycode: int) -> None:
2928
time.sleep(0.01)
3029
fake_input(display, X.KeyRelease, keycode)
3130
display.sync()
32-

0 commit comments

Comments
 (0)