Skip to content

Commit

Permalink
🎨 remove override that was used if doc is a BaseModel
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 committed Oct 17, 2023
1 parent 1e7c0c1 commit 1053b34
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions aries_cloudcontroller/models/verify_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,6 @@ def to_dict(self) -> Dict[str, Any]:
exclude={},
exclude_none=True,
)
# override the default output from pydantic by calling `to_dict()` of doc
if self.doc:
_dict["doc"] = self.doc.to_dict()
return _dict

@classmethod
Expand Down

0 comments on commit 1053b34

Please sign in to comment.