When trying to export to Plex, I'm getting this error:
Traceback (most recent call last):
File "/app/runExportPlex.py", line 18, in <module>
from tidalrr.database import getSettings, getTidalPlaylistTracks, updateTidalPlaylist, updateTidalTrack, updateTidalPlaylistTracksPlexUUID, getDownloadedTidalPlaylists
ImportError: cannot import name 'getTidalPlaylistTracks' from 'tidalrr.database' (/app/tidalrr/database/__init__.py)
I think it's because getTidalPlaylistTracks needs to be imported from tidalrr.database.playlists, like in other occurrences throughout the app. This is probably true for some other functions imported here.
When trying to export to Plex, I'm getting this error:
I think it's because
getTidalPlaylistTracks
needs to be imported fromtidalrr.database.playlists
, like in other occurrences throughout the app. This is probably true for some other functions imported here.