]> git.ipfire.org Git - pbs.git/commitdiff
API: Remove debugging line from users
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 2 Jul 2025 16:55:11 +0000 (16:55 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 2 Jul 2025 16:55:11 +0000 (16:55 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/api/users.py

index 80f6e3e76b507cf0b8890e572ff231d43e77209b..bd3c0bcbea65bb081f1e43c9d5494080d3007df4 100644 (file)
@@ -42,8 +42,6 @@ async def get_user(user: User = fastapi.Depends(get_user_from_path)) -> User:
        if not user:
                raise fastapi.HTTPException(404, "Could not find user")
 
-       print(user)
-
        return user
 
 # Add everything to the APIv1