Skip to content

Commit 8767cd5

Browse files
committed
- Fixed lint issue.
1 parent ce357db commit 8767cd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

okta/dpop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def _rotate_keys_internal(self) -> None:
8686
Generates a new RSA 2048-bit key pair and exports the public key as JWK.
8787
"""
8888
logger.info("Generating new RSA 2048-bit key pair for DPoP")
89-
self._rsa_key = RSA.generate(3072)
89+
self._rsa_key = RSA.generate(3072)
9090
self._public_jwk = self._export_public_jwk()
9191
self._key_created_at = time.time()
9292
logger.debug(f"DPoP keys generated at {self._key_created_at}")

0 commit comments

Comments
 (0)