We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c104464 commit ca70e22Copy full SHA for ca70e22
pymdoccbor/mdoc/verifier.py
@@ -136,7 +136,7 @@ def dumps(self) -> bytes:
136
def data_as_string(self) -> str:
137
return self.dumps().decode()
138
139
- def _deode_claims(self, claims: list[dict]) -> dict:
+ def _decode_claims(self, claims: list[dict]) -> dict:
140
decoded_claims = {}
141
142
for claim in claims:
@@ -189,7 +189,7 @@ def verify(self) -> bool:
189
self.documents_invalid.append(mso)
190
191
for namespace, claims in mso.issuersigned.namespaces.items():
192
- self.disclosure_map[namespace] = self._deode_claims(claims)
+ self.disclosure_map[namespace] = self._decode_claims(claims)
193
194
except Exception as e:
195
logger.error(
0 commit comments