Returns a list of Subcommand objects from all loaded plugins.
()
| 483 | |
| 484 | |
| 485 | def commands() -> list[Subcommand]: |
| 486 | """Returns a list of Subcommand objects from all loaded plugins.""" |
| 487 | out: list[Subcommand] = [] |
| 488 | for plugin in find_plugins(): |
| 489 | out += plugin.commands() |
| 490 | return out |
| 491 | |
| 492 | |
| 493 | def queries() -> dict[str, type[Query]]: |
nothing calls this directly
no test coverage detected