From e18b95e93adcea8094cf80980d948ef40ab1145c Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 24 Jun 2025 13:44:55 +0000 Subject: [PATCH] API: Remove a debug line Signed-off-by: Michael Tremer --- src/api/auth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/auth.py b/src/api/auth.py index 535abe7e..1170a5d6 100644 --- a/src/api/auth.py +++ b/src/api/auth.py @@ -137,7 +137,6 @@ def get_principal(token): # Fail if we could not decode the token except jwt.InvalidTokenError as e: - print(e) raise fastapi.HTTPException(status_code=401, detail="Invalid refresh token") # Extract the principal -- 2.47.2