mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #1187 from pypeclub/bugfix/fix_handler_properties
Settings handler properties fix
This commit is contained in:
commit
d0c772db08
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