Skip to content

Commit

Permalink
Fix variable redeclaration, port of ynput/OpenPype#6330
Browse files Browse the repository at this point in the history
  • Loading branch information
BigRoy committed Sep 11, 2024
1 parent b461492 commit d2e3328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/ayon_nuke/api/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -1469,8 +1469,8 @@ def set_viewers_colorspace(self, imageio_nuke):
nv.setInput(i, n)

# set copied knobs
for k, v in copy_knobs.items():
nv[k].setValue(v)
for knob_name, knob_value in copy_knobs.items():
nv[knob_name].setValue(knob_value)

# set viewerProcess
nv["viewerProcess"].setValue(viewer_process)
Expand Down

0 comments on commit d2e3328

Please sign in to comment.