summaryrefslogtreecommitdiffstats
path: root/subcmds/help.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 /subcmds/help.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 'subcmds/help.py')
-rw-r--r--subcmds/help.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/subcmds/help.py b/subcmds/help.py
index 0d7b664e..a839131b 100644
--- a/subcmds/help.py
+++ b/subcmds/help.py
@@ -16,14 +16,12 @@ import re
16import sys 16import sys
17import textwrap 17import textwrap
18 18
19from subcmds import all_commands
20from color import Coloring 19from color import Coloring
21from command import ( 20from command import MirrorSafeCommand
22 PagedCommand, 21from command import PagedCommand
23 MirrorSafeCommand,
24)
25from wrapper import Wrapper
26from error import RepoExitError 22from error import RepoExitError
23from subcmds import all_commands
24from wrapper import Wrapper
27 25
28 26
29class InvalidHelpCommand(RepoExitError): 27class InvalidHelpCommand(RepoExitError):