Import organisation

This commit is contained in:
Joe Rickerby
2020-06-26 20:22:49 +01:00
parent df69dda44a
commit 2edb33662b
+1 -3
View File
@@ -1,11 +1,9 @@
import shlex
import subprocess
from typing import Dict, NamedTuple, Callable, Optional, List, Sequence
from typing import Callable, Dict, List, NamedTuple, Optional, Sequence
import bashlex # type: ignore
# a function that takes a shell command and the environment, and returns the result
EnvironmentExecutor = Callable[[str, Dict[str, str]], str]