From 5e945bc43a7d46c57217f4649e22ea717786f558 Mon Sep 17 00:00:00 2001 From: Oscar Krause Date: Mon, 12 Jun 2023 14:47:32 +0200 Subject: [PATCH] code styling --- test/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/main.py b/test/main.py index 67856c9..f0f11d8 100644 --- a/test/main.py +++ b/test/main.py @@ -153,8 +153,7 @@ def test_auth_v1_token(): "kid": "00000000-0000-0000-0000-000000000000" } payload = { - "auth_code": jwt.encode(payload, key=jwt_encode_key, headers={'kid': payload.get('kid')}, - algorithm=ALGORITHMS.RS256), + "auth_code": jwt.encode(payload, key=jwt_encode_key, headers={'kid': payload.get('kid')}, algorithm=ALGORITHMS.RS256), "code_verifier": SECRET, }