summaryrefslogtreecommitdiffstats
path: root/progress.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 /progress.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 'progress.py')
-rw-r--r--progress.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/progress.py b/progress.py
index f2edf144..80bc9463 100644
--- a/progress.py
+++ b/progress.py
@@ -16,6 +16,7 @@ import os
16import sys 16import sys
17import time 17import time
18 18
19
19try: 20try:
20 import threading as _threading 21 import threading as _threading
21except ImportError: 22except ImportError:
@@ -23,6 +24,7 @@ except ImportError:
23 24
24from repo_trace import IsTraceToStderr 25from repo_trace import IsTraceToStderr
25 26
27
26_TTY = sys.stderr.isatty() 28_TTY = sys.stderr.isatty()
27 29
28# This will erase all content in the current line (wherever the cursor is). 30# This will erase all content in the current line (wherever the cursor is).