Skip to content

Commit 3b7b8d3

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 916a91c commit 3b7b8d3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

executorlib/task_scheduler/interactive/blockallocation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
check_resource_dict,
99
check_resource_dict_is_empty,
1010
)
11+
from executorlib.standalone.interactive.communication import interface_bootup
1112
from executorlib.standalone.interactive.spawner import BaseSpawner, MpiExecSpawner
1213
from executorlib.standalone.queue import cancel_items_in_queue
1314
from executorlib.task_scheduler.base import TaskSchedulerBase
14-
from executorlib.standalone.interactive.communication import interface_bootup
1515
from executorlib.task_scheduler.interactive.shared import execute_task_dict, task_done
1616

1717

executorlib/task_scheduler/interactive/onetoone.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
from threading import Thread
33
from typing import Optional
44

5-
from executorlib.task_scheduler.base import TaskSchedulerBase
6-
from executorlib.task_scheduler.interactive.shared import execute_task_dict
75
from executorlib.standalone.command import get_interactive_execute_command
86
from executorlib.standalone.interactive.communication import interface_bootup
97
from executorlib.standalone.interactive.spawner import BaseSpawner, MpiExecSpawner
8+
from executorlib.task_scheduler.base import TaskSchedulerBase
9+
from executorlib.task_scheduler.interactive.shared import execute_task_dict
1010

1111

1212
class OneProcessTaskScheduler(TaskSchedulerBase):

0 commit comments

Comments
 (0)