Skip to content

Commit 113b6be

Browse files
lint: fix formatting
1 parent f80ae2b commit 113b6be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/app/api/routes/login.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ def reset_password(session: SessionDep, body: NewPassword) -> Message:
8585
user = crud.get_user_by_email(session=session, email=email)
8686
if not user:
8787
raise HTTPException(
88-
status_code=404, detail="The user with this email does not exist in the system."
88+
status_code=404,
89+
detail="The user with this email does not exist in the system."
8990
)
9091
elif not user.is_active:
9192
raise HTTPException(status_code=400, detail="Inactive user")

0 commit comments

Comments
 (0)