Skip to content

Commit

Permalink
Fix exposed knobs validator
Browse files Browse the repository at this point in the history
  • Loading branch information
tokejepsen committed Feb 19, 2024
1 parent df2c72c commit f9a70bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def process(self, instance):
group_node = instance.data["transientData"]["node"]
nuke_settings = instance.context.data["project_settings"]["nuke"]
create_settings = nuke_settings["create"][plugin]
exposed_knobs = create_settings["exposed_knobs"]
exposed_knobs = create_settings.get("exposed_knobs", [])
unexposed_knobs = []
for knob in exposed_knobs:
if knob not in group_node.knobs():
Expand Down

0 comments on commit f9a70bc

Please sign in to comment.