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 /git_superproject.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 'git_superproject.py')
-rw-r--r-- | git_superproject.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/git_superproject.py b/git_superproject.py index f1b4f231..5d8c0d4e 100644 --- a/git_superproject.py +++ b/git_superproject.py | |||
@@ -22,17 +22,19 @@ Examples: | |||
22 | UpdateProjectsResult = superproject.UpdateProjectsRevisionId(projects) | 22 | UpdateProjectsResult = superproject.UpdateProjectsRevisionId(projects) |
23 | """ | 23 | """ |
24 | 24 | ||
25 | import hashlib | ||
26 | import functools | 25 | import functools |
26 | import hashlib | ||
27 | import os | 27 | import os |
28 | import sys | 28 | import sys |
29 | import time | 29 | import time |
30 | from typing import NamedTuple | 30 | from typing import NamedTuple |
31 | 31 | ||
32 | from git_command import git_require, GitCommand | 32 | from git_command import git_require |
33 | from git_command import GitCommand | ||
33 | from git_config import RepoConfig | 34 | from git_config import RepoConfig |
34 | from git_refs import GitRefs | 35 | from git_refs import GitRefs |
35 | 36 | ||
37 | |||
36 | _SUPERPROJECT_GIT_NAME = "superproject.git" | 38 | _SUPERPROJECT_GIT_NAME = "superproject.git" |
37 | _SUPERPROJECT_MANIFEST_NAME = "superproject_override.xml" | 39 | _SUPERPROJECT_MANIFEST_NAME = "superproject_override.xml" |
38 | 40 | ||