mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Merge pull request #2311 from pypeclub/bugfix/nuke-bake-colorspace-mov-multiplying-repr
This commit is contained in:
commit
7deef758fb
1 changed files with 4 additions and 3 deletions
|
|
@ -112,9 +112,7 @@ class ExporterReview(object):
|
|||
instance (pyblish.instance): instance of pyblish context
|
||||
|
||||
"""
|
||||
data = dict({
|
||||
"representations": list()
|
||||
})
|
||||
data = None
|
||||
|
||||
def __init__(self,
|
||||
klass,
|
||||
|
|
@ -126,6 +124,9 @@ class ExporterReview(object):
|
|||
self.path_in = self.instance.data.get("path", None)
|
||||
self.staging_dir = self.instance.data["stagingDir"]
|
||||
self.collection = self.instance.data.get("collection", None)
|
||||
self.data = dict({
|
||||
"representations": list()
|
||||
})
|
||||
|
||||
def get_file_info(self):
|
||||
if self.collection:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue