diff options
author | Jason R. Coombs <jaraco@google.com> | 2023-09-29 11:04:49 -0400 |
---|---|---|
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-10-31 16:03:54 +0000 |
commit | b32ccbb66bb16965ecb8b4e266c4e45186636c1b (patch) | |
tree | 1c1eda32af709f0cbf822de56f696ccd531ce6de /progress.py | |
parent | b99272c601bc5f466c3cfc782bb852c2c967ad27 (diff) | |
download | git-repo-b32ccbb66bb16965ecb8b4e266c4e45186636c1b.tar.gz |
cleanup: Update codebase to expect Python 3.6
- Bump minimum version to Python 3.6.
- Use f-strings in a lot of places.
Change-Id: I2aa70197230fcec2eff8e7c8eb754f20c08075bb
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/389034
Tested-by: Jason R. Coombs <jaraco@google.com>
Reviewed-by: Mike Frysinger <vapier@google.com>
Commit-Queue: Jason R. Coombs <jaraco@google.com>
Diffstat (limited to 'progress.py')
-rw-r--r-- | progress.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/progress.py b/progress.py index 54eb8f93..290265c6 100644 --- a/progress.py +++ b/progress.py | |||
@@ -52,11 +52,11 @@ def duration_str(total): | |||
52 | uses microsecond resolution. This makes for noisy output. | 52 | uses microsecond resolution. This makes for noisy output. |
53 | """ | 53 | """ |
54 | hours, mins, secs = convert_to_hms(total) | 54 | hours, mins, secs = convert_to_hms(total) |
55 | ret = "%.3fs" % (secs,) | 55 | ret = f"{secs:.3f}s" |
56 | if mins: | 56 | if mins: |
57 | ret = "%im%s" % (mins, ret) | 57 | ret = f"{mins}m{ret}" |
58 | if hours: | 58 | if hours: |
59 | ret = "%ih%s" % (hours, ret) | 59 | ret = f"{hours}h{ret}" |
60 | return ret | 60 | return ret |
61 | 61 | ||
62 | 62 | ||