From fa57cc4bdc14f6b01306a940b20b1e3907fa29df Mon Sep 17 00:00:00 2001 From: Mustafa-Zarkash Date: Thu, 6 Jul 2023 11:27:29 +0300 Subject: [PATCH] fix lint problems --- openpype/hosts/houdini/plugins/create/create_pointcache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpype/hosts/houdini/plugins/create/create_pointcache.py b/openpype/hosts/houdini/plugins/create/create_pointcache.py index b06fb64603..98d46d0eef 100644 --- a/openpype/hosts/houdini/plugins/create/create_pointcache.py +++ b/openpype/hosts/houdini/plugins/create/create_pointcache.py @@ -107,6 +107,6 @@ class CreatePointCache(plugin.HoudiniCreator): # if there are more than one, then it have multiple ouput nodes # return the one with the minimum 'outputidx' - else : + else: return min(outputs, - key=lambda node : node.parm('outputidx').eval()) + key=lambda node : node.parm('outputidx').eval())