diff options
Diffstat (limited to 'subcmds/checkout.py')
-rw-r--r-- | subcmds/checkout.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/subcmds/checkout.py b/subcmds/checkout.py index 033fd349..67f1838c 100644 --- a/subcmds/checkout.py +++ b/subcmds/checkout.py | |||
@@ -14,12 +14,14 @@ | |||
14 | 14 | ||
15 | import functools | 15 | import functools |
16 | import sys | 16 | import sys |
17 | |||
18 | from typing import NamedTuple | 17 | from typing import NamedTuple |
19 | from command import Command, DEFAULT_LOCAL_JOBS | 18 | |
19 | from command import Command | ||
20 | from command import DEFAULT_LOCAL_JOBS | ||
21 | from error import GitError | ||
22 | from error import RepoExitError | ||
20 | from progress import Progress | 23 | from progress import Progress |
21 | from project import Project | 24 | from project import Project |
22 | from error import GitError, RepoExitError | ||
23 | 25 | ||
24 | 26 | ||
25 | class CheckoutBranchResult(NamedTuple): | 27 | class CheckoutBranchResult(NamedTuple): |