diff options
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 | ||