summaryrefslogtreecommitdiffstats
path: root/repo_trace.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 /repo_trace.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 'repo_trace.py')
-rw-r--r--repo_trace.py5
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
23import contextlib 23import contextlib
24import sys
25import os 24import os
26import time 25import sys
27import tempfile 26import tempfile
27import time
28 28
29import platform_utils 29import platform_utils
30 30
31
31# Env var to implicitly turn on tracing. 32# Env var to implicitly turn on tracing.
32REPO_TRACE = "REPO_TRACE" 33REPO_TRACE = "REPO_TRACE"
33 34