|
1 | 1 | import builtins |
2 | 2 | import types |
3 | 3 | from inspect import getmembers, isbuiltin |
4 | | -from typing import Any, Dict, List |
| 4 | +from typing import Any, Dict, List, Union |
5 | 5 |
|
6 | 6 | from je_auto_control.utils.exception.exception_tags import ( |
7 | 7 | action_is_null_error_message, add_command_exception_error_message, |
|
23 | 23 | from je_auto_control.utils.test_record.record_test_class import record_action_to_list, test_record_instance |
24 | 24 | from je_auto_control.wrapper.auto_control_image import locate_all_image, locate_and_click, locate_image_center |
25 | 25 | 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, |
27 | 27 | press_keyboard_key, release_keyboard_key, hotkey, type_keyboard, write |
28 | 28 | ) |
29 | 29 | from je_auto_control.wrapper.auto_control_mouse import ( |
@@ -57,7 +57,6 @@ def __init__(self): |
57 | 57 | "AC_release_mouse": release_mouse, |
58 | 58 | "AC_mouse_scroll": mouse_scroll_error_message, |
59 | 59 | "AC_set_mouse_position": set_mouse_position, |
60 | | - "AC_get_special_table": get_special_table, |
61 | 60 |
|
62 | 61 | # Keyboard 鍵盤相關 |
63 | 62 | "AC_get_keyboard_keys_table": get_keyboard_keys_table, |
|
0 commit comments