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 /subcmds/forall.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 'subcmds/forall.py')
-rw-r--r-- | subcmds/forall.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/subcmds/forall.py b/subcmds/forall.py index 0a897357..9a02c49f 100644 --- a/subcmds/forall.py +++ b/subcmds/forall.py | |||
@@ -16,21 +16,20 @@ import errno | |||
16 | import functools | 16 | import functools |
17 | import io | 17 | import io |
18 | import multiprocessing | 18 | import multiprocessing |
19 | import re | ||
20 | import os | 19 | import os |
20 | import re | ||
21 | import signal | 21 | import signal |
22 | import sys | ||
23 | import subprocess | 22 | import subprocess |
23 | import sys | ||
24 | 24 | ||
25 | from color import Coloring | 25 | from color import Coloring |
26 | from command import ( | 26 | from command import Command |
27 | DEFAULT_LOCAL_JOBS, | 27 | from command import DEFAULT_LOCAL_JOBS |
28 | Command, | 28 | from command import MirrorSafeCommand |
29 | MirrorSafeCommand, | 29 | from command import WORKER_BATCH_SIZE |
30 | WORKER_BATCH_SIZE, | ||
31 | ) | ||
32 | from error import ManifestInvalidRevisionError | 30 | from error import ManifestInvalidRevisionError |
33 | 31 | ||
32 | |||
34 | _CAN_COLOR = [ | 33 | _CAN_COLOR = [ |
35 | "branch", | 34 | "branch", |
36 | "diff", | 35 | "diff", |