Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-advanced-user-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-advanced-user-tools
Commits
94f6222f
Verified
Commit
94f6222f
authored
1 year ago
by
Daniel Hornung
Browse files
Options
Downloads
Patches
Plain Diff
DOC: Changelog
parent
f12bc9cf
No related branches found
No related tags found
2 merge requests
!89
ENH: JsonSchemaExporter accepts do_not_create parameter.
,
!82
ENH: JsonSchemaExporter accepts do_not_create parameter.
Pipeline
#43063
failed
1 year ago
Stage: setup
Stage: cert
Stage: style
Stage: unittest
Stage: integrationtest
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
src/caosadvancedtools/models/data_model.py
+1
-1
1 addition, 1 deletion
src/caosadvancedtools/models/data_model.py
with
2 additions
and
1 deletion
CHANGELOG.md
+
1
−
0
View file @
94f6222f
...
...
@@ -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 ###
...
...
This diff is collapsed.
Click to expand it.
src/caosadvancedtools/models/data_model.py
+
1
−
1
View file @
94f6222f
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment