mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
Move variable closer to its usage
This commit is contained in:
parent
0bec3f0d2e
commit
f56f0cc3d7
1 changed files with 1 additions and 2 deletions
|
|
@ -28,7 +28,6 @@ class ExtractComposite(plugin.HoudiniExtractorPlugin,
|
||||||
|
|
||||||
render_rop(ropnode)
|
render_rop(ropnode)
|
||||||
|
|
||||||
output = instance.data["frames"]
|
|
||||||
_, ext = splitext(file_name, [])
|
_, ext = splitext(file_name, [])
|
||||||
ext = ext.lstrip(".")
|
ext = ext.lstrip(".")
|
||||||
|
|
||||||
|
|
@ -38,7 +37,7 @@ class ExtractComposite(plugin.HoudiniExtractorPlugin,
|
||||||
representation = {
|
representation = {
|
||||||
"name": ext,
|
"name": ext,
|
||||||
"ext": ext,
|
"ext": ext,
|
||||||
"files": output,
|
"files": instance.data["frames"],
|
||||||
"stagingDir": staging_dir,
|
"stagingDir": staging_dir,
|
||||||
"frameStart": instance.data["frameStartHandle"],
|
"frameStart": instance.data["frameStartHandle"],
|
||||||
"frameEnd": instance.data["frameEndHandle"],
|
"frameEnd": instance.data["frameEndHandle"],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue