Skip to content

Commit

Permalink
Apparently forgot one change.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Oct 4, 2021
1 parent 0cd040e commit 0e2b1d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cryptography/x509/pkcs12.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __hash__(self) -> int:
return hash((self.key, self.cert, self.additional_certs))

def __repr__(self) -> str:
fmt = "<PKCS12KeyAndCertificates(key={}, cert={}, additional_certs={})>"
return fmt.format(
self.key, self.cert, self.additional_certs
fmt = (
"<PKCS12KeyAndCertificates(key={}, cert={}, additional_certs={})>"
)
return fmt.format(self.key, self.cert, self.additional_certs)

0 comments on commit 0e2b1d7

Please sign in to comment.