MCPcopy Index your code
hub / github.com/beetbox/beets / commands

Function commands

beets/plugins.py:485–490  ·  view source on GitHub ↗

Returns a list of Subcommand objects from all loaded plugins.

()

Source from the content-addressed store, hash-verified

483
484
485def 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
493def queries() -> dict[str, type[Query]]:

Callers

nothing calls this directly

Calls 2

find_pluginsFunction · 0.85
commandsMethod · 0.45

Tested by

no test coverage detected