Returns a list of subcommand names in the order they should appear.
(self, ctx: Context)
| 1879 | return self.commands.get(cmd_name) |
| 1880 | |
| 1881 | def list_commands(self, ctx: Context) -> list[str]: |
| 1882 | """Returns a list of subcommand names in the order they should appear.""" |
| 1883 | return sorted(self.commands) |
| 1884 | |
| 1885 | def collect_usage_pieces(self, ctx: Context) -> list[str]: |
| 1886 | rv = super().collect_usage_pieces(ctx) |
no outgoing calls
no test coverage detected