Skip to content

Commit a34764d

Browse files
fix
1 parent 0b7e719 commit a34764d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/common-library/src/common_library/serialization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def model_dump_with_secrets(
3131
elif isinstance(field_data, dict):
3232
field_type = get_origin(settings_obj.model_fields[field_name].annotation)
3333
if not field_type:
34-
break
34+
continue
3535
if issubclass(field_type, BaseModel):
3636
data[field_name] = model_dump_with_secrets(
3737
field_type.model_validate(field_data),

0 commit comments

Comments
 (0)