Refactor proper variable names

This commit is contained in:
Petr Kalis 2025-04-15 13:56:43 +02:00
parent 6fafe050d7
commit c82537008f

View file

@ -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"],