summaryrefslogtreecommitdiffstats
path: root/git_config.py
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2023-08-21 21:20:32 -0400
committerLUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-08-22 18:32:22 +0000
commit6447733eb28ea188d551ae518a7e51ebf63a4350 (patch)
tree3e2571b39af0f8544dae4660ebc1d29e2a7bda9d /git_config.py
parent06ddc8c50a7e802dbaf8468144c2b5773cda3714 (diff)
downloadgit-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.py10
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
26import urllib.error 26import urllib.error
27import urllib.request 27import urllib.request
28 28
29from error import GitError, UploadError 29from error import GitError
30from error import UploadError
31from git_command import GitCommand
32from git_refs import R_CHANGES
33from git_refs import R_HEADS
34from git_refs import R_TAGS
30import platform_utils 35import platform_utils
31from repo_trace import Trace 36from repo_trace import Trace
32from git_command import GitCommand 37
33from 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.