mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Fix do frame recalculate only on lists
This commit is contained in:
parent
86a9613fdb
commit
8347bad343
1 changed files with 4 additions and 1 deletions
|
|
@ -789,7 +789,10 @@ def _create_instances_for_aov(
|
|||
else os.path.dirname(collected_files)
|
||||
)
|
||||
|
||||
if frames_to_render is not None:
|
||||
if (
|
||||
frames_to_render is not None
|
||||
and isinstance(collected_files, (list, tuple)) # not single file
|
||||
):
|
||||
frames_to_render = get_real_frames_to_render(frames_to_render)
|
||||
collections, _ = clique.assemble(collected_files)
|
||||
collected_files = _get_real_files_to_render(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue