🐛 Removed unnecessary print in download endpoint

This commit is contained in:
Mawoka
2023-06-23 10:24:25 +02:00
parent c744ec162f
commit 60b6ae3321
-1
View File
@@ -40,7 +40,6 @@ async def download_file(file_name: str):
if not checked_image_string[0]:
raise HTTPException(status_code=400, detail="Invalid file name")
if checked_image_string[1] is not None:
print(checked_image_string)
item = await StorageItem.objects.get_or_none(id=checked_image_string[1])
if item is None:
print("Item not found")