From 1eeb97a343542d33d4094e3f6b3bc22653c640d5 Mon Sep 17 00:00:00 2001 From: kshtiijrajsharma Date: Wed, 13 Dec 2023 13:52:31 +0545 Subject: [PATCH] Fix typo and code lint on auth router --- API/auth/routers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/API/auth/routers.py b/API/auth/routers.py index dd66ffb4..212e22a3 100644 --- a/API/auth/routers.py +++ b/API/auth/routers.py @@ -116,6 +116,7 @@ async def update_user( Raises: - HTTPException: If the user with the given osm_id is not found. """ + auth = Users() return auth.update_user(osm_id, update_data)