Sync branches (#667)

This commit is contained in:
Stéphane Bruckert 2021-04-10 15:40:09 +01:00 committed by dieser-niko
parent 97cb986477
commit 68ee2d6de8

View File

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