Skip to content

Commit

Permalink
Album: it inherits from MetadataItem, but never calls MetadataItem.__…
Browse files Browse the repository at this point in the history
…init__()

- this doesn't seem to cause any issue, but that's bad practice
  • Loading branch information
zas committed May 30, 2024
1 parent f4c1f95 commit 6a633dc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions picard/album.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ class Album(DataObject, MetadataItem):

def __init__(self, album_id, discid=None):
DataObject.__init__(self, album_id)
MetadataItem.__init__(self)
self.tagger = QtCore.QCoreApplication.instance()
self.tracks = []
self.loaded = False
Expand Down

0 comments on commit 6a633dc

Please sign in to comment.