Fixed typo. test_jwt.py tests pass

This commit is contained in:
Jean-Luc Duckworth 2024-05-07 16:08:36 -04:00
parent d5767e9403
commit d60aa8282e
No known key found for this signature in database
GPG key ID: B4A6059AC8A974D6

View file

@ -159,7 +159,7 @@ class JWTHandler:
# Supported algos: https://pyjwt.readthedocs.io/en/stable/algorithms.html # Supported algos: https://pyjwt.readthedocs.io/en/stable/algorithms.html
# "Warning: Make sure not to mix symmetric and asymmetric algorithms that interpret # "Warning: Make sure not to mix symmetric and asymmetric algorithms that interpret
# the key in different ways (e.g. HS* and RS*)." # the key in different ways (e.g. HS* and RS*)."
algorithms = ["RS256", "RS384", "RS512", "PS256", "PS384", "PS512"], algorithms = ["RS256", "RS384", "RS512", "PS256", "PS384", "PS512"]
audience = os.getenv("JWT_AUDIENCE") audience = os.getenv("JWT_AUDIENCE")
decode_options = None decode_options = None