ongeiver
10/18/2022, 8:01 PMpython
from kedro.pipeline import Pipeline, node, pipeline
def create_pipeline(**kwargs) -> Pipeline:
return pipeline(
[
node(),
node(),
]
)
I have a "Module is not callable" lint error due to the use of pipeline() (without a capital letter).
The message disappears when I replace pipeline() by Pipeline().
What is the difference between these 2? and why are we importing both?