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