WIP on AlbumCover class
This commit is contained in:
+2
-1
@@ -27,7 +27,8 @@ class RadioParadise(object):
|
||||
return result
|
||||
|
||||
class AlbumCover(RadioParadise):
|
||||
def __init__(self, path):
|
||||
def __init__(self, path, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
self.jpg_path=path
|
||||
|
||||
def store_albumcover(self):
|
||||
|
||||
Reference in New Issue
Block a user