From 3d9e44b3643a66beb7875013a2c221ae404e8698 Mon Sep 17 00:00:00 2001 From: Alok Saboo Date: Mon, 12 Feb 2024 20:00:37 -0500 Subject: [PATCH] formatting fixes --- beetsplug/spotify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/spotify.py b/beetsplug/spotify.py index 16ae00ead..b07b7884e 100644 --- a/beetsplug/spotify.py +++ b/beetsplug/spotify.py @@ -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 )