Skip to content

Commit 9ce42c8

Browse files
committed
Reformat code
1 parent 24e01d4 commit 9ce42c8

6 files changed

Lines changed: 4 additions & 22 deletions

File tree

automation_editor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from automation_editor.automation_editor_ui.editor_main.main_ui import start_editor
21
from automation_editor.automation_editor_ui.editor_main.main_ui import AutomationEditor
32
from automation_editor.automation_editor_ui.editor_main.main_ui import EDITOR_EXTEND_TAB
3+
from automation_editor.automation_editor_ui.editor_main.main_ui import start_editor
44

55
__all__ = [
66
"start_editor", "AutomationEditor", "EDITOR_EXTEND_TAB"

automation_editor/automation_editor_ui/complete/complete_extend.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@ def complete_extend_package(main_window: AutomationEditor) -> None:
2626
widget.code_edit.complete_list.append(word)
2727
complete_list.append(word)
2828
widget.code_edit.set_complete(widget.code_edit.complete_list)
29-

automation_editor/automation_editor_ui/syntax/syntax_extend.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,3 @@ def syntax_extend_package(main_window: AutomationEditor) -> None:
3535
}
3636
}
3737
)
38-

automation_editor/extend/process_executor/load_density/load_density_process.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,12 @@
22

33
from typing import TYPE_CHECKING, Union
44

5-
from je_editor import EditorWidget
6-
75
from automation_editor.extend.process_executor.process_executor_utils import build_process
86

97
if TYPE_CHECKING:
108
from automation_editor.automation_editor_ui.editor_main.main_ui import AutomationEditor
11-
import json
129
import sys
1310

14-
from automation_editor.automation_editor_ui.show_code_window.code_window import CodeWindow
15-
from automation_editor.extend.mail_thunder_extend.mail_thunder_setting import send_after_test
16-
from automation_editor.extend.process_executor.task_process_manager import TaskProcessManager
17-
from automation_editor.utils.exception.exception_tags import wrong_test_data_format_exception_tag
18-
from automation_editor.utils.exception.exceptions import ITETestExecutorException
1911
from automation_editor.utils.file_process.get_dir_file_list import ask_and_get_dir_files_as_list
2012

2113

automation_editor/extend/process_executor/process_executor_utils.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44
import sys
55
from typing import TYPE_CHECKING, Union
66

7-
from automation_editor.utils.exception.exceptions import ITETestExecutorException
8-
9-
from automation_editor.utils.exception.exception_tags import wrong_test_data_format_exception_tag
107
from je_editor import EditorWidget
118

129
from automation_editor.automation_editor_ui.show_code_window.code_window import CodeWindow
1310
from automation_editor.extend.mail_thunder_extend.mail_thunder_setting import send_after_test
1411
from automation_editor.extend.process_executor.task_process_manager import TaskProcessManager
12+
from automation_editor.utils.exception.exception_tags import wrong_test_data_format_exception_tag
13+
from automation_editor.utils.exception.exceptions import ITETestExecutorException
1514

1615
if TYPE_CHECKING:
1716
from automation_editor.automation_editor_ui.editor_main.main_ui import AutomationEditor

automation_editor/extend/process_executor/web_runner/web_runner_process.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,12 @@
22

33
from typing import TYPE_CHECKING, Union
44

5-
from je_editor import EditorWidget
6-
75
from automation_editor.extend.process_executor.process_executor_utils import build_process
86

97
if TYPE_CHECKING:
108
from automation_editor.automation_editor_ui.editor_main.main_ui import AutomationEditor
11-
import json
129
import sys
1310

14-
from automation_editor.automation_editor_ui.show_code_window.code_window import CodeWindow
15-
from automation_editor.extend.mail_thunder_extend.mail_thunder_setting import send_after_test
16-
from automation_editor.extend.process_executor.task_process_manager import TaskProcessManager
17-
from automation_editor.utils.exception.exception_tags import wrong_test_data_format_exception_tag
18-
from automation_editor.utils.exception.exceptions import ITETestExecutorException
1911
from automation_editor.utils.file_process.get_dir_file_list import ask_and_get_dir_files_as_list
2012

2113

@@ -26,6 +18,7 @@ def call_web_runner_test(
2618
):
2719
build_process(main_window, "je_web_runner", exec_str, False, program_buffer)
2820

21+
2922
def call_web_runner_test_with_send(
3023
main_window: AutomationEditor,
3124
exec_str: Union[str, None] = None,

0 commit comments

Comments
 (0)