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.
load_config
1 parent 5123a97 commit f0b457cCopy full SHA for f0b457c
RELEASE_NOTES.md
@@ -26,6 +26,8 @@
26
+ The class is now immutable.
27
+ The constructor now accepts only keyword arguments.
28
29
+ * `load_config()`: the `base_schema` argument is now keyword-only.
30
+
31
## New Features
32
33
- `LoggingConfigUpdatingActor`
src/frequenz/sdk/config/_util.py
@@ -32,6 +32,7 @@ def load_config(
cls: type[DataclassT],
config: Mapping[str, Any],
34
/,
35
+ *,
36
base_schema: type[Schema] | None = None,
37
**marshmallow_load_kwargs: Any,
38
) -> DataclassT:
0 commit comments