non-working solution

This commit is contained in:
Johan Hjorth 2025-06-25 13:25:04 +00:00
parent 56e1061325
commit b9a288461e
2 changed files with 16 additions and 1 deletions

View file

@ -4,9 +4,15 @@ from musicbrainz_helpers import load_cache
import time
def main():
print("Startar spellistgenerator")
cache = load_cache()
added_artists = cache.get("added_artists", [])
added_tracks = cache.get("added_tracks", [])
print(f"📦 Antal artists i cache: {len(added_artists)}")
if not added_artists:
print("[PLEX] Ingen artist har lagts till ännu.")
return
if not added_artists:
print("[PLEX] Ingen artist har lagts till ännu.")