From a61865cdd89d5a4d75fffe1f9bc1022cc775a944 Mon Sep 17 00:00:00 2001 From: Jarvis Date: Fri, 30 Jan 2026 14:04:40 +0000 Subject: [PATCH] Fix IndentationError in app.py --- company-explorer/backend/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/company-explorer/backend/app.py b/company-explorer/backend/app.py index 3a411c39..bb0bd4a4 100644 --- a/company-explorer/backend/app.py +++ b/company-explorer/backend/app.py @@ -311,7 +311,8 @@ def update_reported_mistake_status( request: MistakeUpdateStatusRequest, db: Session = Depends(get_db), username: str = Depends(authenticate_user) -): mistake = db.query(ReportedMistake).filter(ReportedMistake.id == mistake_id).first() +): + mistake = db.query(ReportedMistake).filter(ReportedMistake.id == mistake_id).first() if not mistake: raise HTTPException(404, detail="Reported mistake not found")