From 44571c1f062ee2ed607378f560332bae824b2225 Mon Sep 17 00:00:00 2001 From: Mustafa-Zarkash Date: Thu, 6 Jul 2023 13:42:50 +0300 Subject: [PATCH] delete unnecessary function call --- openpype/hosts/houdini/plugins/create/create_pointcache.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openpype/hosts/houdini/plugins/create/create_pointcache.py b/openpype/hosts/houdini/plugins/create/create_pointcache.py index cf5f9b2edb..8914269f45 100644 --- a/openpype/hosts/houdini/plugins/create/create_pointcache.py +++ b/openpype/hosts/houdini/plugins/create/create_pointcache.py @@ -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()