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_command.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_command.py')
-rw-r--r-- | git_command.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/git_command.py b/git_command.py index 36fcfe7c..a5cf514b 100644 --- a/git_command.py +++ b/git_command.py | |||
@@ -14,17 +14,20 @@ | |||
14 | 14 | ||
15 | import functools | 15 | import functools |
16 | import os | 16 | import os |
17 | import sys | ||
18 | import subprocess | 17 | import subprocess |
18 | import sys | ||
19 | from typing import Any, Optional | 19 | from typing import Any, Optional |
20 | 20 | ||
21 | from error import GitError | 21 | from error import GitError |
22 | from error import RepoExitError | 22 | from error import RepoExitError |
23 | from git_refs import HEAD | 23 | from git_refs import HEAD |
24 | import platform_utils | 24 | import platform_utils |
25 | from repo_trace import REPO_TRACE, IsTrace, Trace | 25 | from repo_trace import IsTrace |
26 | from repo_trace import REPO_TRACE | ||
27 | from repo_trace import Trace | ||
26 | from wrapper import Wrapper | 28 | from wrapper import Wrapper |
27 | 29 | ||
30 | |||
28 | GIT = "git" | 31 | GIT = "git" |
29 | # NB: These do not need to be kept in sync with the repo launcher script. | 32 | # NB: These do not need to be kept in sync with the repo launcher script. |
30 | # These may be much newer as it allows the repo launcher to roll between | 33 | # These may be much newer as it allows the repo launcher to roll between |