From 3ebbb22f30f2b1b41727b269a08b427e9a85d6bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Wed, 27 Nov 2024 22:30:29 -0500 Subject: [PATCH] fix lint --- tests/test_api_jwt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api_jwt.py b/tests/test_api_jwt.py index ec68a079..4b4bdcd1 100644 --- a/tests/test_api_jwt.py +++ b/tests/test_api_jwt.py @@ -473,7 +473,7 @@ def test_rasise_exception_on_partial_issuer_match(self, jwt): with pytest.raises(InvalidIssuerError): jwt.decode(token, "secret", issuer=issuer, algorithms=["HS256"]) - + def test_raise_exception_token_without_audience(self, jwt): payload = {"some": "payload"} token = jwt.encode(payload, "secret")