From 9a77782ac0a3b77c75138d1dde5901c9f79a6503 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Fri, 8 Aug 2025 23:27:53 +0100 Subject: Run ruff on code --- backend/routes/auth/authorize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/routes/auth/authorize.py') diff --git a/backend/routes/auth/authorize.py b/backend/routes/auth/authorize.py index 7f18cb4..2f9e6e7 100644 --- a/backend/routes/auth/authorize.py +++ b/backend/routes/auth/authorize.py @@ -57,7 +57,7 @@ async def process_token( # Legacy key, we should use exp and use JWT expiry as below it. "expiry": token_expiry.isoformat(), # Correct JWT expiry key: - "exp": token_expiry + "exp": token_expiry, } token = jwt.encode(data, SECRET_KEY, algorithm="HS256") -- cgit v1.2.3