Skip to content

Commit 1a0e262

Browse files
committed
Removed print
1 parent 9a3b27a commit 1a0e262

File tree

1 file changed

+0
-1
lines changed
  • backend/PyMatcha/routes/api/auth

1 file changed

+0
-1
lines changed

backend/PyMatcha/routes/api/auth/login.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ def logout():
9393
data = request.get_json()
9494
access_token = data["access_token"]
9595
refresh_token = data["refresh_token"]
96-
print(access_token, refresh_token)
9796
access_jti = get_jti(access_token)
9897
refresh_jti = get_jti(refresh_token)
9998
redis.set("is_revoked_jti:" + access_jti, "true", ACCESS_TOKEN_EXPIRES * 1.2)

0 commit comments

Comments
 (0)