diff --git a/openpype/hosts/hiero/plugins/publish/precollect_retime.py b/openpype/hosts/hiero/plugins/publish/precollect_retime.py index bf41faf1be..c0835a90ba 100644 --- a/openpype/hosts/hiero/plugins/publish/precollect_retime.py +++ b/openpype/hosts/hiero/plugins/publish/precollect_retime.py @@ -42,7 +42,7 @@ class PrecollectRetime(api.InstancePlugin): speed, handle_start, handle_end - )) + )) # loop withing subtrack items source_in_change = 0 @@ -63,9 +63,10 @@ class PrecollectRetime(api.InstancePlugin): if animated: look_up = [ ((node["lookup"].getValueAt(i)) - i) - for i in range( - (timeline_in - handle_start), (timeline_out + handle_end) + 1) - ] + for i in range( + (timeline_in - handle_start), + (timeline_out + handle_end) + 1) + ] # calculate differnce diff_in = (node["lookup"].getValueAt( timeline_in)) - timeline_in diff --git a/openpype/hosts/nuke/plugins/load/load_mov.py b/openpype/hosts/nuke/plugins/load/load_mov.py index 6ddae72dd2..2372fc57d8 100644 --- a/openpype/hosts/nuke/plugins/load/load_mov.py +++ b/openpype/hosts/nuke/plugins/load/load_mov.py @@ -136,7 +136,8 @@ class LoadMov(api.Loader): read_node['frame'].setValue(str(self.first_frame)) else: # start at version frame start - read_node['frame'].setValue(str(orig_first - self.handle_start)) + read_node['frame'].setValue( + str(orig_first - self.handle_start)) if colorspace: read_node["colorspace"].setValue(str(colorspace))