mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Refactor proper variable names
This commit is contained in:
parent
6fafe050d7
commit
c82537008f
1 changed files with 4 additions and 4 deletions
|
|
@ -528,11 +528,11 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
|
||||
# delete files added to fill gaps
|
||||
if new_frame_files:
|
||||
for f in new_frame_files.values():
|
||||
os.unlink(f)
|
||||
for filepath in new_frame_files.values():
|
||||
os.unlink(filepath)
|
||||
|
||||
for f in temp_data["paths_to_remove"]:
|
||||
os.unlink(f)
|
||||
for filepath in temp_data["paths_to_remove"]:
|
||||
os.unlink(filepath)
|
||||
|
||||
new_repre.update({
|
||||
"fps": temp_data["fps"],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue