delete unnecessary function call

This commit is contained in:
Mustafa-Zarkash 2023-07-06 13:42:50 +03:00
parent ac517edf55
commit 44571c1f06

View file

@ -58,8 +58,7 @@ class CreatePointCache(plugin.HoudiniCreator):
# get the output node with the minimum
# 'outputidx' or the node with display flag
sop_path = self.get_obj_output(selected_node) or \
selected_node.displayNode()
sop_path = self.get_obj_output(selected_node)
if sop_path:
parms["sop_path"] = sop_path.path()