mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix check of attribute values
This commit is contained in:
parent
095b10d38d
commit
593de5e995
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue