We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e19d4b3 + 6f9b59e commit 75f9c18Copy full SHA for 75f9c18
executorlib/cache/shared.py
@@ -4,7 +4,7 @@
4
import subprocess
5
import sys
6
from concurrent.futures import Future
7
-from typing import Tuple, Optional
+from typing import Optional, Tuple
8
9
from executorlib.standalone.command import get_command_path
10
from executorlib.standalone.hdf import dump, get_output
@@ -48,7 +48,9 @@ def done(self) -> bool:
48
49
50
def execute_in_subprocess(
51
- command: list, task_dependent_lst: list = [], cwd: Optional[str] = None,
+ command: list,
52
+ task_dependent_lst: list = [],
53
+ cwd: Optional[str] = None,
54
) -> subprocess.Popen:
55
"""
56
Execute a command in a subprocess.
0 commit comments