mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 01:03:53 +00:00
Reduce artist_album limit
Reduces the limit so that a query called without explicit limit is valid with the new changes to the spotify API.
This commit is contained in:
parent
6787aabe0f
commit
b401fc67ed
@ -400,7 +400,7 @@ class Spotify:
|
||||
return self._get("artists/?ids=" + ",".join(tlist))
|
||||
|
||||
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=10, offset=0
|
||||
):
|
||||
""" Get Spotify catalog information about an artist's albums
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user