From c4699f4c82f9b0500cab1ab497091afaddfb9107 Mon Sep 17 00:00:00 2001 From: cwilvx Date: Sat, 31 Aug 2024 14:00:51 +0300 Subject: [PATCH] remove prints --- app/lib/artistlib.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/lib/artistlib.py b/app/lib/artistlib.py index a3aafcfe..f0dd1fd1 100644 --- a/app/lib/artistlib.py +++ b/app/lib/artistlib.py @@ -151,13 +151,11 @@ class CheckArtistImages: # read all files in the artist image folder path = settings.Paths.get_sm_artist_img_path() processed = [path.replace(".webp", "") for path in os.listdir(path)] - print(f"Found {len(processed)} processed artist images") unprocessed = [ a for a in ArtistStore.get_flat_list() if a.artisthash not in processed ] - print(f"Downloading {len(unprocessed)} artist images") key_artist_map = ((instance_key, artist) for artist in unprocessed) with ThreadPoolExecutor(max_workers=14) as executor: