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_config.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_config.py')
-rw-r--r-- | git_config.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/git_config.py b/git_config.py index 971066ef..8c2eb6e9 100644 --- a/git_config.py +++ b/git_config.py | |||
@@ -26,11 +26,15 @@ from typing import Union | |||
26 | import urllib.error | 26 | import urllib.error |
27 | import urllib.request | 27 | import urllib.request |
28 | 28 | ||
29 | from error import GitError, UploadError | 29 | from error import GitError |
30 | from error import UploadError | ||
31 | from git_command import GitCommand | ||
32 | from git_refs import R_CHANGES | ||
33 | from git_refs import R_HEADS | ||
34 | from git_refs import R_TAGS | ||
30 | import platform_utils | 35 | import platform_utils |
31 | from repo_trace import Trace | 36 | from repo_trace import Trace |
32 | from git_command import GitCommand | 37 | |
33 | from git_refs import R_CHANGES, R_HEADS, R_TAGS | ||
34 | 38 | ||
35 | # Prefix that is prepended to all the keys of SyncAnalysisState's data | 39 | # Prefix that is prepended to all the keys of SyncAnalysisState's data |
36 | # that is saved in the config. | 40 | # that is saved in the config. |