Skip to content
Snippets Groups Projects
Verified Commit b075ce8b authored by Daniel Hornung's avatar Daniel Hornung
Browse files

MAINT: Added NotImplementedError.

parent 54aab5dd
No related branches found
No related tags found
2 merge requests!89ENH: JsonSchemaExporter accepts do_not_create parameter.,!80F simple schema export
Pipeline #42722 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