Skip to content

Commit 2951757

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/app/api/routes/login.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def reset_password(session: SessionDep, body: NewPassword) -> Message:
8686
if not user:
8787
raise HTTPException(
8888
status_code=404,
89-
detail="The user with this email does not exist in the system."
89+
detail="The user with this email does not exist in the system.",
9090
)
9191
elif not user.is_active:
9292
raise HTTPException(status_code=400, detail="Inactive user")

0 commit comments

Comments
 (0)