From f4928360a044c21aecd6cc8c2a14c1d676a19fbd Mon Sep 17 00:00:00 2001 From: "David S. Batista" Date: Wed, 28 Feb 2024 17:34:30 +0100 Subject: [PATCH] fixing docstrings (#7249) --- haystack/dataclasses/document.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haystack/dataclasses/document.py b/haystack/dataclasses/document.py index e1f35ac03..9cddb5ce3 100644 --- a/haystack/dataclasses/document.py +++ b/haystack/dataclasses/document.py @@ -143,7 +143,7 @@ class Document(metaclass=_BackwardCompatible): """ Creates a new Document object from a dictionary. - NOTE: `dataframe` and `blob` fields are converted to their original types. + The `dataframe` and `blob` fields are converted to their original types. """ if (dataframe := data.get("dataframe")) is not None: data["dataframe"] = read_json(io.StringIO(dataframe))