Skip to content
Snippets Groups Projects

ENH: JsonSchemaExporter accepts do_not_create parameter.

Merged Florian Spreckelsen requested to merge release-v0.9.0 into main
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
@@ -198,7 +198,7 @@ def parse_model_from_json_schema(
ignored. Default is False.
existing_model : dict, optional
An existing model to which the created model shall be added.
An existing model to which the created model shall be added. Not implemented yet.
Returns
-------
@@ -213,6 +213,9 @@ def parse_model_from_json_schema(
about the limitations of the current implementation.
"""
if existing_model is not None:
raise NotImplementedError("Adding to an existing model is not implemented yet.")
# @author Florian Spreckelsen
# @date 2022-02-17
# @review Timm Fitschen 2023-05-25
Loading