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 763586a commit 6e287d9Copy full SHA for 6e287d9
packages/models-library/src/models_library/api_schemas_webserver/projects.py
@@ -149,7 +149,9 @@ class ProjectPatch(InputSchema):
149
StudyUI | None,
150
BeforeValidator(empty_str_to_none_pre_validator),
151
PlainSerializer(
152
- lambda obj: jsonable_encoder(obj, exclude_unset=True, by_alias=False)
+ lambda obj: jsonable_encoder(
153
+ obj, exclude_unset=True, by_alias=False
154
+ ) # For the sake of backward compatibility
155
),
156
] = Field(default=None)
157
quality: dict[str, Any] | None = Field(default=None)
0 commit comments