From 3b8cb98e6d89a93d09b96d0b05a563e79c303cb5 Mon Sep 17 00:00:00 2001 From: Alok Saboo Date: Wed, 15 Nov 2023 10:21:53 -0500 Subject: [PATCH] Update beetsplug/spotify.py Co-authored-by: J0J0 Todos <2733783+JOJ0@users.noreply.github.com> --- beetsplug/spotify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/spotify.py b/beetsplug/spotify.py index 77e6b41c4..e4b269575 100644 --- a/beetsplug/spotify.py +++ b/beetsplug/spotify.py @@ -687,12 +687,12 @@ class SpotifyPlugin(MetadataSourcePlugin, BeetsPlugin): track_data.get("popularity"), track_data.get("external_ids").get("isrc"), ) - return [ + return ( track_data.get("popularity"), track_data.get("external_ids").get("isrc"), track_data.get("external_ids").get("ean"), track_data.get("external_ids").get("upc"), - ] + ) def track_audio_features(self, track_id=None): """Fetch track audio features by its Spotify ID."""