From e4b01218b3f9ab8b9a4632d03083ce821391f73f Mon Sep 17 00:00:00 2001 From: Jarvis Date: Fri, 30 Jan 2026 14:05:56 +0000 Subject: [PATCH] Fix another indentation issue in update_company_industry --- 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 bb0bd4a4..6e5b0256 100644 --- a/company-explorer/backend/app.py +++ b/company-explorer/backend/app.py @@ -352,7 +352,8 @@ def update_company_industry( background_tasks: BackgroundTasks, db: Session = Depends(get_db), username: str = Depends(authenticate_user) -): company = db.query(Company).filter(Company.id == company_id).first() +): + company = db.query(Company).filter(Company.id == company_id).first() if not company: raise HTTPException(404, detail="Company not found")