From cc6559102f87b99c292525c60e2bca1bb148f9f0 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Fri, 22 Jan 2021 10:42:46 +0100 Subject: [PATCH] fix immutable wrappers --- pype/settings/entities/item_entities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/settings/entities/item_entities.py b/pype/settings/entities/item_entities.py index 4abe0aeb7a..ed1f490622 100644 --- a/pype/settings/entities/item_entities.py +++ b/pype/settings/entities/item_entities.py @@ -186,7 +186,7 @@ class DictImmutableKeysEntity(ItemEntity): if children_schema["type"] in WRAPPER_TYPES: _children_schema = copy.deepcopy(children_schema) wrapper_children = self._add_children( - children_schema["children"] + children_schema ) _children_schema["children"] = wrapper_children added_children.append(_children_schema)