Skip to content
Snippets Groups Projects
Commit f5af30dc authored by florian's avatar florian
Browse files

Merge branch 'f-simple-schema-export' into f-schema-export-references

parents b0445eae b075ce8b
No related branches found
No related tags found
2 merge requests!89ENH: JsonSchemaExporter accepts do_not_create parameter.,!81F schema export references
Pipeline #42723 failed
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment