From 1f4ac2d4334538355433c9e97ebbe65496663da4 Mon Sep 17 00:00:00 2001 From: CasVT Date: Thu, 21 Aug 2025 15:30:46 +0200 Subject: [PATCH] Updated docstrings in users.py --- backend/implementations/users.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/implementations/users.py b/backend/implementations/users.py index 6e96470..51a6f67 100644 --- a/backend/implementations/users.py +++ b/backend/implementations/users.py @@ -151,7 +151,7 @@ class Users: """Get a user instance based on the ID. Args: - id (int): The ID of the user. + user_id (int): The ID of the user. Returns: User: The user instance. @@ -179,7 +179,7 @@ class Users: """Check if a user ID is taken. Args: - id (int): The user ID to check. + user_id (int): The user ID to check. Returns: bool: Whether the user ID is already taken.