diff options
author | Mike Frysinger <vapier@google.com> | 2023-08-21 21:20:32 -0400 |
---|---|---|
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-08-22 18:32:22 +0000 |
commit | 6447733eb28ea188d551ae518a7e51ebf63a4350 (patch) | |
tree | 3e2571b39af0f8544dae4660ebc1d29e2a7bda9d /subcmds/init.py | |
parent | 06ddc8c50a7e802dbaf8468144c2b5773cda3714 (diff) | |
download | git-repo-6447733eb28ea188d551ae518a7e51ebf63a4350.tar.gz |
isort: format codebasev2.36
Change-Id: I6f11d123b68fd077f558d3c21349c55c5f251019
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/383715
Reviewed-by: Gavin Mak <gavinmak@google.com>
Tested-by: Mike Frysinger <vapier@google.com>
Commit-Queue: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'subcmds/init.py')
-rw-r--r-- | subcmds/init.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/subcmds/init.py b/subcmds/init.py index c5a2c54c..529b212b 100644 --- a/subcmds/init.py +++ b/subcmds/init.py | |||
@@ -16,11 +16,15 @@ import os | |||
16 | import sys | 16 | import sys |
17 | 17 | ||
18 | from color import Coloring | 18 | from color import Coloring |
19 | from command import InteractiveCommand, MirrorSafeCommand | 19 | from command import InteractiveCommand |
20 | from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD | 20 | from command import MirrorSafeCommand |
21 | from wrapper import Wrapper | ||
22 | from error import UpdateManifestError | ||
23 | from error import RepoUnhandledExceptionError | 21 | from error import RepoUnhandledExceptionError |
22 | from error import UpdateManifestError | ||
23 | from git_command import git_require | ||
24 | from git_command import MIN_GIT_VERSION_HARD | ||
25 | from git_command import MIN_GIT_VERSION_SOFT | ||
26 | from wrapper import Wrapper | ||
27 | |||
24 | 28 | ||
25 | _REPO_ALLOW_SHALLOW = os.environ.get("REPO_ALLOW_SHALLOW") | 29 | _REPO_ALLOW_SHALLOW = os.environ.get("REPO_ALLOW_SHALLOW") |
26 | 30 | ||