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 70a74d3 commit 291db61Copy full SHA for 291db61
packages/common-library/src/common_library/basic_types.py
@@ -3,11 +3,12 @@
3
4
from pydantic_core import PydanticUndefined
5
6
-# SEE https://github.com/fastapi/fastapi/blob/master/fastapi/_compat.py#L75-L78
7
Undefined = PydanticUndefined
8
DEFAULT_FACTORY: Any = Undefined
9
-# Use `UNSET` as default when default_factory
+# Use `DEFAULT_FACTORY` as field default when using Field(default_factory=...)
10
# SEE https://github.com/ITISFoundation/osparc-simcore/pull/6882
+# SEE https://github.com/ITISFoundation/osparc-simcore/pull/7112#discussion_r1933432238
11
+# SEE https://github.com/fastapi/fastapi/blob/master/fastapi/_compat.py#L75-L78
12
13
14
class LogLevel(StrEnum):
0 commit comments