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 /repo_trace.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 'repo_trace.py')
-rw-r--r-- | repo_trace.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/repo_trace.py b/repo_trace.py index 01beaf8e..d243ce6c 100644 --- a/repo_trace.py +++ b/repo_trace.py | |||
@@ -21,13 +21,14 @@ To also include trace outputs in stderr do `repo --trace_to_stderr ...` | |||
21 | """ | 21 | """ |
22 | 22 | ||
23 | import contextlib | 23 | import contextlib |
24 | import sys | ||
25 | import os | 24 | import os |
26 | import time | 25 | import sys |
27 | import tempfile | 26 | import tempfile |
27 | import time | ||
28 | 28 | ||
29 | import platform_utils | 29 | import platform_utils |
30 | 30 | ||
31 | |||
31 | # Env var to implicitly turn on tracing. | 32 | # Env var to implicitly turn on tracing. |
32 | REPO_TRACE = "REPO_TRACE" | 33 | REPO_TRACE = "REPO_TRACE" |
33 | 34 | ||