mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-12 22:26:16 -04:00
Fix Artist and Label downloads
This commit is contained in:
parent
85cb6660ae
commit
0dc6af7ecd
1 changed files with 2 additions and 1 deletions
|
@ -1778,6 +1778,8 @@ class Artist(Tracklist, Media):
|
|||
>>> artist.download()
|
||||
"""
|
||||
|
||||
downloaded_ids: set = set()
|
||||
|
||||
def __init__(self, client: Client, **kwargs):
|
||||
"""Create a new Artist object.
|
||||
|
||||
|
@ -1787,7 +1789,6 @@ class Artist(Tracklist, Media):
|
|||
:param kwargs:
|
||||
"""
|
||||
self.client = client
|
||||
self.downloaded_ids: set = set()
|
||||
|
||||
for k, v in kwargs.items():
|
||||
setattr(self, k, v)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue