Do someone knows how to fix this ?
# questions
j
Do someone knows how to fix this ?
d
Are you using a starter? What does your project structure look like?
j
No i am working on a project from scratch, I created 2 pipelines called: data_processing and data_science
but the error happened just when I created the datascience pipeline
I ran this on terminal: kedro pipeline create data_science
C:*****.py359 UserWarning: An error occurred warnings.py:109 while importing the 'sdna_mining.pipelines.data_science' module. Nothing defined therein will be returned by 'find_pipelines'.
👍 1
d
Then that's the problem, your module isn't importable so it's skipping over it while giving a warning.
You probably have some missing import or invalid syntax or something in there.
j
Thanks