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 d233eb1 commit 4c77747Copy full SHA for 4c77747
src/merge/core/pydantic_utilities.py
@@ -138,7 +138,7 @@ def encode_by_type(o: typing.Any) -> typing.Any:
138
139
def update_forward_refs(model: typing.Type["Model"], **localns: typing.Any) -> None:
140
if IS_PYDANTIC_V2:
141
- model.model_rebuild(force=True) # type: ignore # Pydantic v2
+ model.model_rebuild(force=True, raise_errors=False) # type: ignore # Pydantic v2
142
else:
143
model.update_forward_refs(**localns)
144
0 commit comments