mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
fix(global): not default True value
This commit is contained in:
parent
7867e7e324
commit
ad7b7c6e22
2 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ class ExtractJpegEXR(pyblish.api.InstancePlugin):
|
|||
return
|
||||
|
||||
# Skip review when requested.
|
||||
if not instance.data.get("review"):
|
||||
if not instance.data.get("review", True):
|
||||
return
|
||||
|
||||
# get representation and loop them
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
|
||||
def process(self, instance):
|
||||
# Skip review when requested.
|
||||
if not instance.data.get("review"):
|
||||
if not instance.data.get("review", True):
|
||||
return
|
||||
|
||||
# ffmpeg doesn't support multipart exrs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue