From 5dcb338f10b2c786f7923d8447033d1535772fef Mon Sep 17 00:00:00 2001 From: Rich Wareham Date: Mon, 18 Nov 2024 22:45:34 +0000 Subject: [PATCH] docs: fix another typo in the README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f97ce65..ac03bd5 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ EXPECTED_PROJECT_PATH = "my-group/my-project" # Expected audience claim for id token. EXPECTED_AUDIENCE_CLAIM = "https://my-service.example.com" -def verify_gitlab_token(token: str) -> dict[str, Any] +def verify_gitlab_token(token: str) -> dict[str, Any]: """ Verify an OIDC token from GitLab and return the dictionary of claims. Raises federatedidentity.FederatedIdentityError if the token failed verification.