From 0dc6af7ecd6c871bd509bde664f1848b6afd44f3 Mon Sep 17 00:00:00 2001 From: nathom Date: Sat, 24 Jul 2021 11:01:37 -0700 Subject: [PATCH] Fix Artist and Label downloads --- streamrip/media.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/streamrip/media.py b/streamrip/media.py index 4a2fdd0..43ecf68 100644 --- a/streamrip/media.py +++ b/streamrip/media.py @@ -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)