File tree Expand file tree Collapse file tree 4 files changed +2
-9
lines changed
Expand file tree Collapse file tree 4 files changed +2
-9
lines changed Original file line number Diff line number Diff line change 66import sys
77import host
88import osd
9- from multiprocessing import Process , Pool
9+ from multiprocessing import Pool
1010from util import (
11- BoxType ,
1211 Config ,
1312 Target ,
1413 ensure_inside_container ,
1918 run_dc_shell_commands ,
2019 get_container_engine ,
2120 run_shell_command ,
22- run_shell_commands ,
23- ContainerEngine ,
2421 DockerEngine ,
2522 PodmanEngine ,
2623 colored ,
27- engine ,
2824 engine_compose ,
2925 Colors ,
3026 get_seed_name
Original file line number Diff line number Diff line change 1212 run_dc_shell_command ,
1313 run_shell_command ,
1414 engine ,
15- BoxType
1615)
1716
1817
Original file line number Diff line number Diff line change 55from typing import Dict
66
77from util import (
8- BoxType ,
98 Config ,
109 Target ,
1110 ensure_inside_container ,
Original file line number Diff line number Diff line change @@ -417,5 +417,4 @@ def up(self, hosts: int):
417417def get_container_engine () -> ContainerEngine :
418418 if engine () == 'docker' :
419419 return DockerEngine ()
420- else :
421- return PodmanEngine ()
420+ return PodmanEngine ()
You can’t perform that action at this time.
0 commit comments