diff options
Diffstat (limited to 'subcmds/help.py')
-rw-r--r-- | subcmds/help.py | 10 |
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 | |||
16 | import sys | 16 | import sys |
17 | import textwrap | 17 | import textwrap |
18 | 18 | ||
19 | from subcmds import all_commands | ||
20 | from color import Coloring | 19 | from color import Coloring |
21 | from command import ( | 20 | from command import MirrorSafeCommand |
22 | PagedCommand, | 21 | from command import PagedCommand |
23 | MirrorSafeCommand, | ||
24 | ) | ||
25 | from wrapper import Wrapper | ||
26 | from error import RepoExitError | 22 | from error import RepoExitError |
23 | from subcmds import all_commands | ||
24 | from wrapper import Wrapper | ||
27 | 25 | ||
28 | 26 | ||
29 | class InvalidHelpCommand(RepoExitError): | 27 | class InvalidHelpCommand(RepoExitError): |