(lib, opts, args)
| 541 | def commands(self) -> list[ui.Subcommand]: |
| 542 | # autotagger import command |
| 543 | def queries(lib, opts, args): |
| 544 | success = self._parse_opts(opts) |
| 545 | if success: |
| 546 | results = self._match_library_tracks(lib, args) |
| 547 | self._output_match_results(results) |
| 548 | |
| 549 | spotify_cmd = ui.Subcommand( |
| 550 | "spotify", help=f"build a {self.data_source} playlist" |
nothing calls this directly
no test coverage detected