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 0b7e719 commit a34764dCopy full SHA for a34764d
packages/common-library/src/common_library/serialization.py
@@ -31,7 +31,7 @@ def model_dump_with_secrets(
31
elif isinstance(field_data, dict):
32
field_type = get_origin(settings_obj.model_fields[field_name].annotation)
33
if not field_type:
34
- break
+ continue
35
if issubclass(field_type, BaseModel):
36
data[field_name] = model_dump_with_secrets(
37
field_type.model_validate(field_data),
0 commit comments