Closed evgkirov closed 9 months ago
Fixes #283
There are two instances of deep_update in the Pydantic v2 codebase that we could import. However:
deep_update
pydantic.v1.utils.deep_update
pydantic._internal._utils.deep_update
So I had to copy-paste this function into our library (Pydantic is MIT licensed, so no problem here).
Description
Fixes #283
There are two instances of
deep_update
in the Pydantic v2 codebase that we could import. However:pydantic.v1.utils.deep_update
function could be removed in the future.pydantic._internal._utils.deep_update
function is clearly marked for internal use.So I had to copy-paste this function into our library (Pydantic is MIT licensed, so no problem here).
Checklist