Added missing comma to artist_albums

This commit is contained in:
Niko 2024-05-17 12:37:54 +02:00 committed by GitHub
parent 2e54f2c138
commit 0a8e7f635e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -405,7 +405,7 @@ class Spotify(object):
return self._get("artists/?ids=" + ",".join(tlist)) return self._get("artists/?ids=" + ",".join(tlist))
def artist_albums( def artist_albums(
self, artist_id, album_type=None, include_groups=None country=None, limit=20, offset=0 self, artist_id, album_type=None, include_groups=None, country=None, limit=20, offset=0
): ):
""" Get Spotify catalog information about an artist's albums """ Get Spotify catalog information about an artist's albums