Skip to content

Commit

Permalink
Fixed couple comments
Browse files Browse the repository at this point in the history
Signed-off-by: artem.ivanov <[email protected]>
  • Loading branch information
Artemkaaas committed Jan 15, 2024
1 parent 9e6875d commit 54a1118
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ export * from './RevocationRegistryDefinition'
export * from './RevocationRegistryDefinitionPrivate'
export * from './RevocationStatusList'
export * from './W3cCredential'
export * from './CredentialOffer'
export * from './W3cPresentation'
2 changes: 1 addition & 1 deletion wrappers/python/anoncreds/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def from_legacy(
return cred.to_w3c(cred_def, w3c_version)

def _get_proof_details(self) -> bindings.ObjectHandle:
if self._proof_details == None:
if self._proof_details is None:
self._proof_details = bindings.w3c_credential_get_integrity_proof_details(self.handle)
return self._proof_details

Expand Down

0 comments on commit 54a1118

Please sign in to comment.