Tim

Results 4 comments of Tim

![image](https://user-images.githubusercontent.com/2156695/200668318-618e627e-6cc5-4537-9a62-712ca81f9cfa.png) The VAT id in your example is invalid according to EU VIES.

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) setattr(sys.modules[__name__], "weather_tool.node_class", weather_tool.node_class) ```