From e5502feb93c37e3891ad2732aafbd787331a129e Mon Sep 17 00:00:00 2001 From: mary-crkn Date: Wed, 30 Oct 2024 11:11:30 -0400 Subject: [PATCH] removed the wrong character which results in app crash --- utils/upload_manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/upload_manifest.py b/utils/upload_manifest.py index 6959376..4171bd2 100644 --- a/utils/upload_manifest.py +++ b/utils/upload_manifest.py @@ -81,7 +81,7 @@ async def upload_manifest_backend( raise HTTPException(status_code=400, detail="Invalid file type. Only JSON files are allowed.") if not content: -ยท raise HTTPException(status_code=400, detail="Empty file is not allowed.") + raise HTTPException(status_code=400, detail="Empty file is not allowed.") # Validate the manifest, pass JSON string validator = Validator()