Skip to content

Commit

Permalink
サブコマンドの順番を変更する
Browse files Browse the repository at this point in the history
  • Loading branch information
yuji38kwmt committed Aug 29, 2019
1 parent de531a2 commit fb3c296
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion annofabcli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@ def main(arguments: Optional[Sequence[str]] = None):

annofabcli.annotation.subcommand_annotation.add_parser(subparsers)
annofabcli.annotation_specs.subcommand_annotation_specs.add_parser(subparsers)
annofabcli.filesystem.subcommand_filesystem.add_parser(subparsers)
annofabcli.input_data.subcommand_input_data.add_parser(subparsers)
annofabcli.inspection_comment.subcommand_inspection_comment.add_parser(subparsers)
annofabcli.instruction.subcommand_instruction.add_parser(subparsers)
annofabcli.project.subcommand_project.add_parser(subparsers)
annofabcli.project_member.subcommand_project_member.add_parser(subparsers)
annofabcli.task.subcommand_task.add_parser(subparsers)

annofabcli.filesystem.subcommand_filesystem.add_parser(subparsers)

if arguments is None:
args = parser.parse_args()
else:
Expand Down

0 comments on commit fb3c296

Please sign in to comment.