From 9dc5a0b7e075fb35de3d00918a71c9ed85b55948 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Tue, 28 May 2024 10:18:46 -0700 Subject: [PATCH] refac --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 50744d4..2f9241b 100644 --- a/main.py +++ b/main.py @@ -199,7 +199,7 @@ async def filter(form_data: FilterForm): print(e) raise HTTPException( status_code=status.HTTP_500_INTERNAL_SERVER_ERROR, - detail=f"Error in filter {form_data.model}: {str(e)}", + detail=f"{str(e)}", )