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

DOC: Changelog

parent f12bc9cf
No related branches found
No related tags found
2 merge requests!89ENH: JsonSchemaExporter accepts do_not_create parameter.,!82ENH: JsonSchemaExporter accepts do_not_create parameter.
Pipeline #43063 failed
......@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
added.
* The `json_schema_exporter` module which introduces tools to create a json
schema from a RecordType, e.g., for the usage in web forms.
* `DataModel.get_deep(name: str)` method which uses the DataModel as a kind of cache pool.
### Changed ###
......
......@@ -263,7 +263,7 @@ class DataModel(dict):
return list(all_ents.values())
def get_deep(self, name, visited: set = None):
def get_deep(self, name: str, visited: set = None):
"""Attempt to resolve references for the given ``name``.
This methods only uses data which is available in this datamodel, which acts kind of like a
......
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