Skip to content

Commit

Permalink
Apply black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Aug 30, 2024
1 parent c2ad743 commit efd473f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signxml/verifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def verify(
if x509_cert and str(type(x509_cert)) == "<class 'OpenSSL.crypto.X509'>":
warn(
"SignXML received a PyOpenSSL object as x509_cert input. Please pass a Cryptography.X509 object instead.",
DeprecationWarning
DeprecationWarning,
)
x509_cert = x509_cert.to_cryptography() # type: ignore[union-attr]

Expand Down

0 comments on commit efd473f

Please sign in to comment.