Add support for Tidal video links #53

This commit is contained in:
nathom 2021-04-16 13:10:59 -07:00
parent 8bfa7bc10d
commit c115eae15f
4 changed files with 14 additions and 5 deletions

View file

@ -100,6 +100,12 @@ class TrackMetadata:
self.add_album_meta(album)
def update(self, meta):
"""Given a TrackMetadata object (usually from an album), the fields
of the current object are updated.
:param meta:
:type meta: TrackMetadata
"""
assert isinstance(meta, TrackMetadata)
for k, v in meta.asdict().items():