Skip to content

Commit def353c

Browse files
committed
test: suppress mypy error for internal jwt.api_jwk import
1 parent 0087e24 commit def353c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/google-auth/google/oauth2/id_token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def verify_token(
137137
if "keys" in certs:
138138
try:
139139
import jwt as jwt_lib # type: ignore
140-
from jwt.api_jwk import PyJWKSet
140+
from jwt.api_jwk import PyJWKSet # type: ignore
141141
except ImportError as caught_exc: # pragma: NO COVER
142142
raise ImportError(
143143
"The pyjwt library is not installed, please install the pyjwt package to use the jwk certs format."

0 commit comments

Comments
 (0)