mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
extract review has better check for sequence input
This commit is contained in:
parent
29b2196825
commit
bd854fc7e1
1 changed files with 5 additions and 1 deletions
|
|
@ -375,7 +375,11 @@ class ExtractBurnin(pype.api.Extractor):
|
|||
Returns:
|
||||
None: This is processing method.
|
||||
"""
|
||||
is_sequence = "sequence" in new_repre["tags"]
|
||||
# TODO we should find better way to know if input is sequence
|
||||
is_sequence = (
|
||||
"sequence" in new_repre["tags"]
|
||||
and isinstance(new_repre["files"], (tuple, list))
|
||||
)
|
||||
if is_sequence:
|
||||
input_filename = new_repre["sequence_file"]
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue