From 68ee2d6de80d4ddf7d1ea45f0997035a8a3a21fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bruckert?= Date: Sat, 10 Apr 2021 15:40:09 +0100 Subject: [PATCH] Sync branches (#667) --- spotipy/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotipy/client.py b/spotipy/client.py index 61924a5..3415841 100644 --- a/spotipy/client.py +++ b/spotipy/client.py @@ -1314,7 +1314,6 @@ class Spotify: - limit - the number of tracks to return - offset - the index of the first track to return - market - an ISO 3166-1 alpha-2 country code - """ return self._get("me/tracks", limit=limit, offset=offset, market=market) @@ -1440,6 +1439,7 @@ class Spotify: Parameters: - shows - a list of show URIs, URLs or IDs """ + slist = [self._get_id("show", s) for s in shows] return self._get("me/shows/contains?ids=" + ",".join(slist))