From d1883f61f8de72a4656387bf44a63c3a00812adc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sviatoslav=20Sydorenko=20=28=D0=A1=D0=B2=D1=8F=D1=82=D0=BE?= =?UTF-8?q?=D1=81=D0=BB=D0=B0=D0=B2=20=D0=A1=D0=B8=D0=B4=D0=BE=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=29?= Date: Thu, 16 May 2024 17:32:54 +0200 Subject: [PATCH] Flip the quotes @ `oidc-exchange.py` --- oidc-exchange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oidc-exchange.py b/oidc-exchange.py index 7dea3b0..cfc31d9 100644 --- a/oidc-exchange.py +++ b/oidc-exchange.py @@ -247,7 +247,7 @@ except requests.JSONDecodeError: # occurred during minting. if not mint_token_resp.ok: reasons = '\n'.join( - f'* `{error['code']}`: {error['description']}' + f'* `{error["code"]}`: {error["description"]}' for error in mint_token_payload['errors'] )