Skip to content

Commit

Permalink
Update backend/app/auth/users.py
Browse files Browse the repository at this point in the history
Co-authored-by: sykp241095 <[email protected]>
  • Loading branch information
sszgwdk and sykp241095 authored Dec 13, 2024
1 parent 5a05578 commit 1e3984e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/auth/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ async def update_user_password(
try:
async with get_user_db_context(session) as user_db:
async with get_user_manager_context(user_db) as user_manager:
user = await user_manager.get(id)
user = await user_manager.get(user_id)
if not user:
raise UserNotExists(f"User {id} does not exist")

Expand Down

0 comments on commit 1e3984e

Please sign in to comment.