diff --git a/examples/artist_albums.py b/examples/artist_albums.py index 9c1e79b..b8b35e2 100644 --- a/examples/artist_albums.py +++ b/examples/artist_albums.py @@ -12,7 +12,7 @@ def get_artist(name): else: return None -def show_artist_albums(id): +def show_artist_albums(artist): albums = [] results = sp.artist_albums(artist['id'], album_type='album') albums.extend(results['items'])