We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84dd0e2 commit d1973e4Copy full SHA for d1973e4
beets/metadata_plugins.py
@@ -39,7 +39,7 @@ def find_metadata_source_plugins() -> list[MetadataSourcePlugin]:
39
def candidates(items, *args, **kwargs) -> Iterable[AlbumInfo]:
40
"""Return matching album candidates from all metadata source plugins."""
41
for plugin in find_metadata_source_plugins():
42
- for candidate in plugin.candidates(items, *args, **kwargs):
+ for candidate in plugin.candidates(items=items, *args, **kwargs):
43
send("album_info_received", items=items, album_info=candidate)
44
yield candidate
45
0 commit comments