mirror of
https://github.com/c0de-archive/spotipy.git
synced 2025-07-30 14:00:18 +00:00
Merge pull request #91 from felipeumanzor/patch-1
Duplicated album detection improved
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user