Skip to content

Commit 6f9b59e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 0f59f57 commit 6f9b59e

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)