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

Commit d3ab2e7

Browse files
committed
fixed lint
1 parent e6e9c26 commit d3ab2e7

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

google/auth/crypt/rsa.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def __init__(self, public_key):
4646
impl_lib = _cryptography_rsa
4747
elif module_str.startswith(RSA_KEY_MODULE_PREFIX):
4848
from google.auth.crypt import _python_rsa
49+
4950
impl_lib = _python_rsa
5051
else:
5152
raise ValueError(f"unrecognized public key type: {type(public_key)}")
@@ -96,6 +97,7 @@ def __init__(self, private_key, key_id=None):
9697
impl_lib = _cryptography_rsa
9798
elif module_str.startswith(RSA_KEY_MODULE_PREFIX):
9899
from google.auth.crypt import _python_rsa
100+
99101
impl_lib = _python_rsa
100102
else:
101103
raise ValueError(f"unrecognized private key type: {type(private_key)}")

0 commit comments

Comments
 (0)