From 892415bc80205d42a3de4ecf963c956777d8e267 Mon Sep 17 00:00:00 2001 From: cwilvx Date: Sun, 16 Mar 2025 00:07:26 +0300 Subject: [PATCH] remove prints --- app/api/artist.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/api/artist.py b/app/api/artist.py index a90f5799..79c4c432 100644 --- a/app/api/artist.py +++ b/app/api/artist.py @@ -52,7 +52,6 @@ def get_artist(path: ArtistHashSchema, query: GetArtistQuery): Returns artist data, tracks and genres for the given artisthash. """ - print(query) artisthash = path.artisthash limit = query.limit @@ -69,8 +68,6 @@ def get_artist(path: ArtistHashSchema, query: GetArtistQuery): if artist.albumcount == 0 and tcount < 10: limit = tcount - print(limit) - try: year = datetime.fromtimestamp(artist.date).year except ValueError: