https://kedro.org/ logo
#questions
Title
# questions
j

Joel Ramirez

01/25/2023, 2:33 PM
Do someone knows how to fix this ?
d

Deepyaman Datta

01/25/2023, 2:35 PM
Are you using a starter? What does your project structure look like?
j

Joel Ramirez

01/25/2023, 2:38 PM
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

Deepyaman Datta

01/25/2023, 2:43 PM
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

Joel Ramirez

01/25/2023, 2:47 PM
Thanks
3 Views