made obvious which files are used, and which aren't

This commit is contained in:
Hellow
2023-02-01 16:19:17 +01:00
parent 611fbe575d
commit e1293a4557
31 changed files with 111 additions and 194 deletions

View File

@@ -366,7 +366,7 @@ class Artist(DatabaseObject, SourceAttribute, MetadataAttribute):
notes: str = None,
lyrical_themes: List[str] = None,
general_genre: str = "",
country: pycountry.Country = None,
country=None,
formed_in: ID3Timestamp = None
):
DatabaseObject.__init__(self, id_=id_)
@@ -376,6 +376,7 @@ class Artist(DatabaseObject, SourceAttribute, MetadataAttribute):
"""
self.album_type = album_type
self.country: pycountry.Country = country
self.formed_in: ID3Timestamp = formed_in
"""
notes, generall genre, lyrics themes are attributes
which are meant to only use in outputs to describe the object