From 96b995ebc13813013dc6d1423e8509f4aae4ed6b Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Wed, 19 Mar 2025 18:10:07 +0000 Subject: [PATCH] feat: Update endpoint login --- endpoints/login.post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints/login.post.py b/endpoints/login.post.py index df5aa08..bcf7ba5 100644 --- a/endpoints/login.post.py +++ b/endpoints/login.post.py @@ -9,7 +9,7 @@ async def login_demo( username: str = "demo", password: str = "password" ): - """Demo login endpoint""" + """Demo loginendpoint""" user = fake_users_db.get(username) if not user or user["password"] != password: raise HTTPException(status_code=400, detail="Invalid credentials")