mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-22 00:21:08 -05:00
oidc-exchange: lintage
Signed-off-by: William Woodruff <william@trailofbits.com>
This commit is contained in:
parent
71a0032909
commit
8bdd0cc2a0
1 changed files with 2 additions and 2 deletions
|
@ -142,8 +142,8 @@ def assert_successful_audience_call(resp: requests.Response, domain: str):
|
|||
)
|
||||
|
||||
|
||||
def render_claims(oidc_token: str) -> str:
|
||||
_, payload, _ = oidc_token.split(".", 2)
|
||||
def render_claims(token: str) -> str:
|
||||
_, payload, _ = token.split(".", 2)
|
||||
claims = json.loads(base64.urlsafe_b64decode(payload))
|
||||
|
||||
def _get(name: str) -> str:
|
||||
|
|
Loading…
Reference in a new issue