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

Commit 2958fe1

Browse files
committed
fixed lint
1 parent 7fa0a84 commit 2958fe1

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

google/auth/crypt/rsa.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@
2121

2222
from cryptography.hazmat.primitives.asymmetric.rsa import RSAPrivateKey
2323
from cryptography.hazmat.primitives.asymmetric.rsa import RSAPublicKey
24+
2425
from google.auth import _helpers
25-
from google.auth.crypt import base
2626
from google.auth.crypt import _cryptography_rsa
2727
from google.auth.crypt import _python_rsa
28+
from google.auth.crypt import base
2829

2930
RSA_KEY_MODULE_PREFIX = "rsa.key"
3031

google/auth/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ class TimeoutError(GoogleAuthError):
105105

106106

107107
class ResponseError(GoogleAuthError):
108-
"""Used to indicate an error occurred when reading an HTTP response."""
108+
"""Used to indicate an error occurred when reading an HTTP response."""

tests/crypt/test__python_rsa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,4 @@ def test_import_warning(self):
200200
with pytest.warns(DeprecationWarning, match="The 'rsa' library is deprecated"):
201201
_python_rsa.RSAVerifier(None)
202202
with pytest.warns(DeprecationWarning, match="The 'rsa' library is deprecated"):
203-
_python_rsa.RSASigner(None)
203+
_python_rsa.RSASigner(None)

0 commit comments

Comments
 (0)