From ef60016d79c99a9c314d5ea853b2c1a60ff1006c Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 24 Sep 2024 23:17:31 +0900 Subject: [PATCH] chore: update pipeline.py (#8285) minor fix --- haystack/core/pipeline/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haystack/core/pipeline/pipeline.py b/haystack/core/pipeline/pipeline.py index b51aa8817..62e7c8f3d 100644 --- a/haystack/core/pipeline/pipeline.py +++ b/haystack/core/pipeline/pipeline.py @@ -77,7 +77,7 @@ class Pipeline(PipelineBase): if not isinstance(res, Mapping): raise PipelineRuntimeError( f"Component '{name}' didn't return a dictionary. " - "Components must always return dictionaries: check the the documentation." + "Components must always return dictionaries: check the documentation." ) span.set_tag("haystack.component.visits", self.graph.nodes[name]["visits"]) span.set_content_tag("haystack.component.output", res)