mirror of
https://github.com/beetbox/beets.git
synced 2026-02-22 15:22:42 +01:00
formatting fixes
This commit is contained in:
parent
64deb3ea2e
commit
3d9e44b364
1 changed files with 2 additions and 2 deletions
|
|
@ -554,8 +554,8 @@ class SpotifyPlugin(MetadataSourcePlugin, BeetsPlugin):
|
|||
|
||||
# Query the Web API for each track, look for the items' JSON data
|
||||
if len(artist) > 50:
|
||||
artist = ','.join(artist.split(',')[:2])
|
||||
query_filters = {'artist': artist, 'album': album}
|
||||
artist = ",".join(artist.split(",")[:2])
|
||||
query_filters = {"artist": artist, "album": album}
|
||||
response_data_tracks = self._search_api(
|
||||
query_type="track", keywords=keywords, filters=query_filters
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue