Skip to content

Commit

Permalink
Merge pull request #3090 from ff137/fix/IndyAttrValue-bad-reference
Browse files Browse the repository at this point in the history
🐛 fix IndyAttrValue bad reference in OpenAPI spec
  • Loading branch information
dbluhm committed Jul 8, 2024
2 parents bfb0d7a + 0394f27 commit be7b870
Show file tree
Hide file tree
Showing 4 changed files with 410 additions and 168 deletions.
4 changes: 1 addition & 3 deletions aries_cloudagent/indy/models/cred.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ def __init__(self, **kwargs):
"""Initialize the custom schema for a dictionary with IndyAttrValue."""
super().__init__(
keys=fields.Str(metadata={"description": "Attribute name"}),
values=fields.Nested(
IndyAttrValueSchema(), metadata={"description": "Attribute value"}
),
values=fields.Nested(IndyAttrValueSchema()),
**kwargs,
)

Expand Down
Loading

0 comments on commit be7b870

Please sign in to comment.