From 5aa8ece21186039d91a8ebe6346d06c7ef8ae3e1 Mon Sep 17 00:00:00 2001 From: Paul <57178183+CodeJunkie01@users.noreply.github.com> Date: Mon, 20 Mar 2023 15:51:35 +0100 Subject: [PATCH] Corrected small typo in error message. (#1791) --- langchain/docstore/wikipedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain/docstore/wikipedia.py b/langchain/docstore/wikipedia.py index 5575b8c7..8882fb23 100644 --- a/langchain/docstore/wikipedia.py +++ b/langchain/docstore/wikipedia.py @@ -17,7 +17,7 @@ class Wikipedia(Docstore): except ImportError: raise ValueError( "Could not import wikipedia python package. " - "Please it install it with `pip install wikipedia`." + "Please install it with `pip install wikipedia`." ) def search(self, search: str) -> Union[str, Document]: