(self)
| 24 | |
| 25 | class BPSyncPlugin(BeetsPlugin): |
| 26 | def __init__(self): |
| 27 | super().__init__() |
| 28 | deprecate_for_user(self._log, "The 'bpsync' plugin") |
| 29 | self.beatport_plugin = BeatportPlugin() |
| 30 | self.beatport_plugin.setup() |
| 31 | |
| 32 | def commands(self): |
| 33 | cmd = ui.Subcommand("bpsync", help="update metadata from Beatport") |
nothing calls this directly
no test coverage detected