(
self, items: Sequence[Item], artist: str, album: str, va_likely: bool
)
| 440 | ) |
| 441 | |
| 442 | def candidates( |
| 443 | self, items: Sequence[Item], artist: str, album: str, va_likely: bool |
| 444 | ) -> Iterable[AlbumInfo]: |
| 445 | results = self._get_candidates("album", items, artist, album, va_likely) |
| 446 | return filter(None, self.albums_for_ids(r["id"] for r in results)) |
| 447 | |
| 448 | def item_candidates( |
| 449 | self, item: Item, artist: str, title: str |
nothing calls this directly
no test coverage detected