Corrected small typo in error message. (#1791)

This commit is contained in:
Paul 2023-03-20 15:51:35 +01:00 committed by GitHub
parent f6d24d5740
commit 5aa8ece211
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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]: