Panda98
Results
1
comments of
Panda98
> Temporary solution working for me is adding this to the bottom of `your_custom_tool.py` > > ``` > setattr(sys.modules[__name__], "string_manipulator.node_class", string_manipulator.node_class) > setattr(sys.modules[__name__], "math_tool.node_class", math_tool.node_class) > setattr(sys.modules[__name__], "template_example.node_class", template_example.node_class) >...