Afiq Johari
02/14/2024, 8:11 AMnode.py and instead of having the helper functions within the same node.py, I want to store it in a separate helper.py in the same data science folder.
I tried importing the functions from helper.py with
from .helper import funcHelp1, funcHelp2 but this makes the whole data science pipeline to be undiscoverable.Ben Horsburgh
02/14/2024, 9:08 AMpipeline_registry.py file. For example:
from my_pipeline import create_pipeline
pipe = create_pipeline()
Do kedro run and you should see a helpful error. Then delete those debug lines of code once you fix it.Ankita Katiyar
02/14/2024, 9:08 AMhelper.py?Ben Horsburgh
02/14/2024, 9:10 AMruff and pytest