Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 208299a

Browse files
Update google/auth/crypt/rsa.py
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 3dd119f commit 208299a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

google/auth/crypt/rsa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __init__(self, public_key):
5050
elif module_str.startswith(CRYPTOGRAPHY_KEY_MODULE_PREFIX):
5151
impl_lib = _cryptography_rsa
5252
else:
53-
raise ValueError(f"unrecognized public key type: {public_key}")
53+
raise ValueError(f"unrecognized public key type: {type(public_key)}")
5454
self._impl = impl_lib.RSAVerifier(public_key)
5555

5656
@_helpers.copy_docstring(base.Verifier)

0 commit comments

Comments
 (0)