diff options
Diffstat (limited to 'subcmds/start.py')
-rw-r--r-- | subcmds/start.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/subcmds/start.py b/subcmds/start.py index 481d9ef2..7a42b26c 100644 --- a/subcmds/start.py +++ b/subcmds/start.py | |||
@@ -14,14 +14,15 @@ | |||
14 | 14 | ||
15 | import functools | 15 | import functools |
16 | import sys | 16 | import sys |
17 | from typing import NamedTuple | ||
17 | 18 | ||
18 | from command import Command, DEFAULT_LOCAL_JOBS | 19 | from command import Command |
19 | from git_config import IsImmutable | 20 | from command import DEFAULT_LOCAL_JOBS |
21 | from error import RepoExitError | ||
20 | from git_command import git | 22 | from git_command import git |
23 | from git_config import IsImmutable | ||
21 | from progress import Progress | 24 | from progress import Progress |
22 | from project import Project | 25 | from project import Project |
23 | from typing import NamedTuple | ||
24 | from error import RepoExitError | ||
25 | 26 | ||
26 | 27 | ||
27 | class ExecuteOneResult(NamedTuple): | 28 | class ExecuteOneResult(NamedTuple): |