From caf95e2611b06d171f4ee222c3bb930240f7d787 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Thu, 3 Apr 2025 09:30:04 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/array/LN_array_color.py --- leenkx/blender/lnx/logicnode/array/LN_array_color.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leenkx/blender/lnx/logicnode/array/LN_array_color.py b/leenkx/blender/lnx/logicnode/array/LN_array_color.py index 9a1a3ef..6c76ef8 100644 --- a/leenkx/blender/lnx/logicnode/array/LN_array_color.py +++ b/leenkx/blender/lnx/logicnode/array/LN_array_color.py @@ -9,8 +9,8 @@ class ColorArrayNode(LnxLogicVariableNodeMixin, LnxLogicTreeNode): lnx_section = 'variable' min_inputs = 0 - def __init__(self): - super(ColorArrayNode, self).__init__() + def __init__(self, *args, **kwargs): + super(ColorArrayNode, self).__init__(*args, **kwargs) self.register_id() def lnx_init(self, context):