From 448b7641e4498dfe6bddec49bee04c50a915986c Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 2 Sep 2021 14:50:15 +0200 Subject: [PATCH] CreateContext has `publish_attributes` --- openpype/pipeline/create/context.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/openpype/pipeline/create/context.py b/openpype/pipeline/create/context.py index 25440adaa2..8708808c11 100644 --- a/openpype/pipeline/create/context.py +++ b/openpype/pipeline/create/context.py @@ -452,6 +452,7 @@ class CreateContext: self.dbcon = dbcon self._log = None + self._publish_attributes = PublishAttributes(self, {}) self.host = host host_is_valid = True @@ -480,6 +481,10 @@ class CreateContext: if reset: self.reset() + @property + def publish_attributes(self): + return self._publish_attributes + @classmethod def get_host_misssing_methods(cls, host): missing = set()