Skip to content
Snippets Groups Projects
Commit 4e78419d authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

DOC: Update changelog

parent a985bd7e
Branches
Tags
2 merge requests!43REL: Release 0.4.1,!42ENH: Special treatment for name property
Pipeline #22413 passed
......@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ###
- `JsonSchemaParser` now identifies `name` properties in the schema with the
CaosDB name property.
### Deprecated ###
### Removed ###
......
......@@ -566,11 +566,11 @@ class Parser(object):
db.BOOLEAN]:
if is_list:
value.datatype = db.LIST(db.__getattribute__(
dtype)) # pylint: disable=no-member
value.datatype = db.LIST(db.__getattribute__( # pylint: disable=no-member
dtype))
else:
value.datatype = db.__getattribute__(
dtype) # pylint: disable=no-member
value.datatype = db.__getattribute__( # pylint: disable=no-member
dtype)
continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment