Home
last modified time | relevance | path

Searched refs:AlbumMatch (Results 1 – 7 of 7) sorted by relevance

/dports/audio/beets/beets-1.4.9/beets/autotag/
H A D__init__.py25 from .hooks import AlbumInfo, TrackInfo, AlbumMatch, TrackMatch # noqa
H A Dmatch.py326 if isinstance(results[0], hooks.AlbumMatch):
387 results[info.album_id] = hooks.AlbumMatch(dist, info, mapping,
H A Dhooks.py539 AlbumMatch = namedtuple('AlbumMatch', ['distance', 'info', 'mapping', variable
/dports/audio/beets/beets-1.4.9/test/
H A Dtest_art.py30 from beets.autotag import AlbumInfo, AlbumMatch
563 self.task.set_choice(AlbumMatch(0, info, {}, set(), set()))
H A Dtest_importer.py40 from beets.autotag import AlbumInfo, TrackInfo, AlbumMatch
1157 self.task.set_choice(AlbumMatch(0, None, {}, set(), set())) # APPLY
1169 self.task.set_choice(AlbumMatch(0, None, {}, set(), set())) # APPLY
H A Dtest_ui.py1071 autotag.AlbumMatch(album_dist, info, mapping, set(), set()),
/dports/audio/beets/beets-1.4.9/beets/ui/
H A Dcommands.py737 assert isinstance(choice, autotag.AlbumMatch)