From a45690641f2a66b523881fabedb203e0aebd5d2c Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Tue, 13 Jul 2021 11:04:59 +0200 Subject: [PATCH] created class for family attribute values --- openpype/pipeline/creator_plugins.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/openpype/pipeline/creator_plugins.py b/openpype/pipeline/creator_plugins.py index 583a5f9d0f..6d43c9da21 100644 --- a/openpype/pipeline/creator_plugins.py +++ b/openpype/pipeline/creator_plugins.py @@ -13,6 +13,10 @@ import six from openpype.lib import get_subset_name +class FamilyAttributeValues(dict): + pass + + class AvalonInstance: """Instance entity with data that will be stored to workfile. @@ -53,7 +57,7 @@ class AvalonInstance: self._data["version"] = data.get("version") # Stored family specific attribute values # {key: value} - self._data["family_attributes"] = {} + self._data["family_attributes"] = FamilyAttributeValues() # Stored publish specific attribute values # {: {key: value}} self._data["publish_attributes"] = {}