fix check of attribute values

This commit is contained in:
iLLiCiTiT 2021-03-24 17:46:12 +01:00
parent 095b10d38d
commit 593de5e995

View file

@ -386,13 +386,13 @@ class MongoSettingsHandler(SettingsHandler):
@property
def anatomy_keys(self):
if self._anatomy_keys:
if self._anatomy_keys is None:
self._prepare_project_settings_keys()
return self._anatomy_keys
@property
def attribute_keys(self):
if self._attribute_keys:
if self._attribute_keys is None:
self._prepare_project_settings_keys()
return self._attribute_keys