Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2311 from pypeclub/bugfix/nuke-bake-colorspace-mo…
Browse files Browse the repository at this point in the history
…v-multiplying-repr
  • Loading branch information
jakubjezek001 authored Nov 25, 2021
2 parents b372eee + 6dcbb53 commit 7deef75
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions openpype/hosts/nuke/api/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,7 @@ class ExporterReview(object):
instance (pyblish.instance): instance of pyblish context
"""
data = dict({
"representations": list()
})
data = None

def __init__(self,
klass,
Expand All @@ -126,6 +124,9 @@ def __init__(self,
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:
Expand Down

0 comments on commit 7deef75

Please sign in to comment.