feat: added artist.artwork to data structure

This commit is contained in:
Luna 2024-06-04 10:13:34 +02:00
parent 49c3734526
commit eb8fd5e580

View File

@ -477,7 +477,7 @@ class Artist(Base):
general_genre: str
unformatted_location: str
artwork: List[Artwork]
artwork: Artwork
source_collection: SourceCollection
contact_collection: Collection[Contact]
@ -495,7 +495,7 @@ class Artist(Base):
"lyrical_themes": list,
"general_genre": lambda: "",
"artwork": list,
"artwork": Artwork,
"source_collection": SourceCollection,
"album_collection": Collection,
@ -515,7 +515,7 @@ class Artist(Base):
notes: FormattedText = None,
lyrical_themes: List[str] = None,
general_genre: str = None,
artwork: List[Artwork] = None,
artwork: Artwork = None,
unformatted_location: str = None,
source_list: List[Source] = None,
contact_list: List[Contact] = None,