From 1799672084b69c131de35a85fab8a389617b3074 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Tue, 14 Sep 2021 00:20:02 -0400 Subject: [PATCH] Fix argument order --- spotify_actions/artist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotify_actions/artist.py b/spotify_actions/artist.py index 55e7dcd..6cd5c33 100644 --- a/spotify_actions/artist.py +++ b/spotify_actions/artist.py @@ -18,7 +18,7 @@ def artist_albums(client: Spotify, artist_ids: Iterable[str]) -> Iterable[Search """ def _artist_albums(artist_id: str, limit: int, offset: int) -> Paging: - return Paging(**client.artist_albums(artist_id, limit, offset)) + return Paging(**client.artist_albums(artist_id, limit=limit, offset=offset)) for artist_id in artist_ids: albums_function = partial(_artist_albums, artist_id)