mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
conditional dict does not care about paths as it must be group
This commit is contained in:
parent
5541b3fd0c
commit
eaa1499510
1 changed files with 1 additions and 7 deletions
|
|
@ -468,13 +468,7 @@ class DictConditionalEntity(ItemEntity):
|
|||
|
||||
output = {}
|
||||
for key, child_obj in children_items:
|
||||
child_value = child_obj.settings_value()
|
||||
if not child_obj.is_file and child_obj.file_item is None:
|
||||
for _key, _value in child_value.items():
|
||||
new_key = "/".join([key, _key])
|
||||
output[new_key] = _value
|
||||
else:
|
||||
output[key] = child_value
|
||||
output[key] = child_obj.settings_value()
|
||||
return output
|
||||
|
||||
if self.is_group:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue