From 5c576df3354e45b43ff8aad40628b46de6f52a8b Mon Sep 17 00:00:00 2001 From: bogdankostic Date: Mon, 22 May 2023 09:51:09 +0200 Subject: [PATCH] fix: Fix necessary extra for MarkdownConverter (#4947) --- haystack/nodes/file_converter/markdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haystack/nodes/file_converter/markdown.py b/haystack/nodes/file_converter/markdown.py index ef04b9bbf..008b90bae 100644 --- a/haystack/nodes/file_converter/markdown.py +++ b/haystack/nodes/file_converter/markdown.py @@ -10,7 +10,7 @@ try: except (ImportError, ModuleNotFoundError) as ie: from haystack.utils.import_utils import _optional_component_not_installed - _optional_component_not_installed(__name__, "preprocessing", ie) + _optional_component_not_installed(__name__, "file-conversion", ie) from haystack.nodes.file_converter.base import BaseConverter from haystack.schema import Document