summaryrefslogtreecommitdiffstats
path: root/subcmds/start.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/start.py')
-rw-r--r--subcmds/start.py9
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
15import functools 15import functools
16import sys 16import sys
17from typing import NamedTuple
17 18
18from command import Command, DEFAULT_LOCAL_JOBS 19from command import Command
19from git_config import IsImmutable 20from command import DEFAULT_LOCAL_JOBS
21from error import RepoExitError
20from git_command import git 22from git_command import git
23from git_config import IsImmutable
21from progress import Progress 24from progress import Progress
22from project import Project 25from project import Project
23from typing import NamedTuple
24from error import RepoExitError
25 26
26 27
27class ExecuteOneResult(NamedTuple): 28class ExecuteOneResult(NamedTuple):