WIP on AlbumCover class

This commit is contained in:
2023-12-30 11:17:16 +01:00
parent 19efe3984c
commit b82b95a911
+2 -1
View File
@@ -27,7 +27,8 @@ class RadioParadise(object):
return result return result
class AlbumCover(RadioParadise): class AlbumCover(RadioParadise):
def __init__(self, path): def __init__(self, path, *args, **kwargs):
super().__init__(*args, **kwargs)
self.jpg_path=path self.jpg_path=path
def store_albumcover(self): def store_albumcover(self):