Zubin Roy
04/09/2024, 2:07 PMfrom kedro.pipeline import Pipeline, pipeline, node
from .nodes import (
test_func,
)
def create_pipeline(**kwargs) -> Pipeline:
return pipeline([
node(
func=test_func,
inputs="test_data",
outputs=None,
name="test_func_node",
),
])
pipeline_registry.py
from typing import Dict
from kedro.framework.project import find_pipelines
from kedro.pipeline import Pipeline
def register_pipelines() -> Dict[str, Pipeline]:
"""Register the project's pipelines.
Returns:
A mapping from pipeline names to ``Pipeline`` objects.
"""
pipelines = find_pipelines()
pipelines["__default__"] = sum(pipelines.values())
return pipelines
And when I run kedro run it returns ValueError: Pipeline contains no nodes after applying all provided filters
I am probably being really stupid but any help would be much appreciated. Thanks!Ankita Katiyar
04/09/2024, 2:58 PMnodes.py
or pipeline.py
- could you post the full stacktrace?Zubin Roy
04/09/2024, 3:50 PMModuleNotFoundError: No module named 'selenium'
How come the ValueError for the pipeline becomes the most prominent error returned?Ankita Katiyar
04/09/2024, 3:56 PM