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))