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 /manifest_xml.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 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index 80e563a5..d944b409 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -18,27 +18,25 @@ import os | |||
18 | import platform | 18 | import platform |
19 | import re | 19 | import re |
20 | import sys | 20 | import sys |
21 | import xml.dom.minidom | ||
22 | import urllib.parse | 21 | import urllib.parse |
22 | import xml.dom.minidom | ||
23 | 23 | ||
24 | from error import ManifestInvalidPathError | ||
25 | from error import ManifestInvalidRevisionError | ||
26 | from error import ManifestParseError | ||
24 | from git_config import GitConfig | 27 | from git_config import GitConfig |
25 | from git_refs import R_HEADS, HEAD | 28 | from git_refs import HEAD |
29 | from git_refs import R_HEADS | ||
26 | from git_superproject import Superproject | 30 | from git_superproject import Superproject |
27 | import platform_utils | 31 | import platform_utils |
28 | from project import ( | 32 | from project import Annotation |
29 | Annotation, | 33 | from project import ManifestProject |
30 | RemoteSpec, | 34 | from project import Project |
31 | Project, | 35 | from project import RemoteSpec |
32 | RepoProject, | 36 | from project import RepoProject |
33 | ManifestProject, | ||
34 | ) | ||
35 | from error import ( | ||
36 | ManifestParseError, | ||
37 | ManifestInvalidPathError, | ||
38 | ManifestInvalidRevisionError, | ||
39 | ) | ||
40 | from wrapper import Wrapper | 37 | from wrapper import Wrapper |
41 | 38 | ||
39 | |||
42 | MANIFEST_FILE_NAME = "manifest.xml" | 40 | MANIFEST_FILE_NAME = "manifest.xml" |
43 | LOCAL_MANIFEST_NAME = "local_manifest.xml" | 41 | LOCAL_MANIFEST_NAME = "local_manifest.xml" |
44 | LOCAL_MANIFESTS_DIR_NAME = "local_manifests" | 42 | LOCAL_MANIFESTS_DIR_NAME = "local_manifests" |