(subparsers)
| 670 | |
| 671 | |
| 672 | def initialize_listtopos_subcommand(subparsers): |
| 673 | sub_parser = subparsers.add_parser( |
| 674 | "list", help="List the running topologies and their statuses.", formatter_class=SortingHelpFormatter |
| 675 | ) |
| 676 | |
| 677 | sub_parser.set_defaults(func=listtopos) |
| 678 | add_common_options(sub_parser) |
| 679 | |
| 680 | |
| 681 | def initialize_set_log_level_subcommand(subparsers): |
no test coverage detected