mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-04 23:17:48 +00:00
Merge pull request #91 from felipeumanzor/patch-1
Duplicated album detection improved
This commit is contained in:
commit
3a385c5181
@ -34,7 +34,7 @@ def show_artist_albums(id):
|
||||
print('Total albums:', len(albums))
|
||||
unique = set() # skip duplicate albums
|
||||
for album in albums:
|
||||
name = album['name']
|
||||
name = album['name'].lower()
|
||||
if not name in unique:
|
||||
print(name)
|
||||
unique.add(name)
|
||||
|
Loading…
Reference in New Issue
Block a user