Skip to content

Commit 8bdd0cc

Browse files
committed
oidc-exchange: lintage
Signed-off-by: William Woodruff <[email protected]>
1 parent 71a0032 commit 8bdd0cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

oidc-exchange.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ def assert_successful_audience_call(resp: requests.Response, domain: str):
142142
)
143143

144144

145-
def render_claims(oidc_token: str) -> str:
146-
_, payload, _ = oidc_token.split(".", 2)
145+
def render_claims(token: str) -> str:
146+
_, payload, _ = token.split(".", 2)
147147
claims = json.loads(base64.urlsafe_b64decode(payload))
148148

149149
def _get(name: str) -> str:

0 commit comments

Comments
 (0)