From d8cc6f733900f4be70d117d75ab62b66bc3aef03 Mon Sep 17 00:00:00 2001 From: "David S. Batista" Date: Fri, 23 May 2025 13:48:41 +0100 Subject: [PATCH] chore: removing an invalid arg from `pipeline.base.PipelineBase.connect()` docstring --- haystack/core/pipeline/base.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/haystack/core/pipeline/base.py b/haystack/core/pipeline/base.py index 36b246a0d..2f08f5708 100644 --- a/haystack/core/pipeline/base.py +++ b/haystack/core/pipeline/base.py @@ -433,8 +433,7 @@ class PipelineBase: :param receiver: The component that receives the value. This can be either just a component name or can be in the format `component_name.connection_name` if the component has multiple inputs. - :param connection_type_validation: Whether the pipeline will validate the types of the connections. - Defaults to the value set in the pipeline. + :returns: The Pipeline instance.