Skip to content

Commit e88d45a

Browse files
committed
Update dev version
1 parent b536cb2 commit e88d45a

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

je_auto_control/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
# import keyboard
8585
from je_auto_control.wrapper.auto_control_keyboard import check_key_is_press
8686
from je_auto_control.wrapper.auto_control_keyboard import get_keyboard_keys_table
87-
from je_auto_control.wrapper.auto_control_keyboard import get_special_table
8887
from je_auto_control.wrapper.auto_control_keyboard import hotkey
8988
from je_auto_control.wrapper.auto_control_keyboard import keyboard_keys_table
9089
from je_auto_control.wrapper.auto_control_keyboard import press_keyboard_key
@@ -124,7 +123,7 @@
124123
"add_command_to_executor", "multiprocess_timeout", "test_record_instance", "screenshot", "pil_screenshot",
125124
"generate_html", "generate_html_report", "generate_json", "generate_json_report", "generate_xml",
126125
"generate_xml_report", "get_dir_files_as_list", "create_project_dir", "start_autocontrol_socket_server",
127-
"callback_executor", "package_manager", "get_special_table", "ShellManager", "default_shell_manager",
126+
"callback_executor", "package_manager", "ShellManager", "default_shell_manager",
128127
"RecordingThread", "send_key_event_to_window", "send_mouse_event_to_window", "windows_window_manage",
129128
"ScreenRecorder", "get_pixel"
130129
]

je_auto_control/utils/executor/action_executor.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import builtins
22
import types
33
from inspect import getmembers, isbuiltin
4-
from typing import Any, Dict, List
4+
from typing import Any, Dict, List, Union
55

66
from je_auto_control.utils.exception.exception_tags import (
77
action_is_null_error_message, add_command_exception_error_message,
@@ -23,7 +23,7 @@
2323
from je_auto_control.utils.test_record.record_test_class import record_action_to_list, test_record_instance
2424
from je_auto_control.wrapper.auto_control_image import locate_all_image, locate_and_click, locate_image_center
2525
from je_auto_control.wrapper.auto_control_keyboard import (
26-
check_key_is_press, get_special_table, get_keyboard_keys_table,
26+
check_key_is_press, get_keyboard_keys_table,
2727
press_keyboard_key, release_keyboard_key, hotkey, type_keyboard, write
2828
)
2929
from je_auto_control.wrapper.auto_control_mouse import (
@@ -57,7 +57,6 @@ def __init__(self):
5757
"AC_release_mouse": release_mouse,
5858
"AC_mouse_scroll": mouse_scroll_error_message,
5959
"AC_set_mouse_position": set_mouse_position,
60-
"AC_get_special_table": get_special_table,
6160

6261
# Keyboard 鍵盤相關
6362
"AC_get_keyboard_keys_table": get_keyboard_keys_table,

je_auto_control/wrapper/auto_control_keyboard.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from je_auto_control.utils.test_record.record_test_class import record_action_to_list
1313
from je_auto_control.wrapper.platform_wrapper import keyboard, keyboard_keys_table, keyboard_check
1414

15-
1615
def get_keyboard_keys_table() -> dict:
1716
"""
1817
取得鍵盤對應表

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.128"
9+
version = "0.0.129"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]

0 commit comments

Comments
 (0)