Skip to content

Commit 75f9c18

Browse files
committed
Merge remote-tracking branch 'origin/cache_working_directory' into cache_working_directory
2 parents e19d4b3 + 6f9b59e commit 75f9c18

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

executorlib/cache/shared.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import subprocess
55
import sys
66
from concurrent.futures import Future
7-
from typing import Tuple, Optional
7+
from typing import Optional, Tuple
88

99
from executorlib.standalone.command import get_command_path
1010
from executorlib.standalone.hdf import dump, get_output
@@ -48,7 +48,9 @@ def done(self) -> bool:
4848

4949

5050
def execute_in_subprocess(
51-
command: list, task_dependent_lst: list = [], cwd: Optional[str] = None,
51+
command: list,
52+
task_dependent_lst: list = [],
53+
cwd: Optional[str] = None,
5254
) -> subprocess.Popen:
5355
"""
5456
Execute a command in a subprocess.

0 commit comments

Comments
 (0)