sort actions in alphabetical order in help

This commit is contained in:
Soren I. Bjornstad 2021-08-26 14:34:31 -05:00
parent 52e79537f6
commit 3f81e15309
1 changed files with 1 additions and 1 deletions

2
tzk.py
View File

@ -208,7 +208,7 @@ class BuildCommand(CliCommand):
parser = argparse.ArgumentParser()
subparsers = parser.add_subparsers()
for command in CliCommand.__subclasses__():
for command in sorted(CliCommand.__subclasses__(), key=lambda i: i.__name__):
subparser = subparsers.add_parser(command.cmd, help=command.help)
subparser.set_defaults(_cls=command)
command.setup_arguments(subparser) # type: ignore