mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-18 02:33:19 +00:00
Corrected small typo in error message. (#1791)
This commit is contained in:
parent
f6d24d5740
commit
5aa8ece211
@ -17,7 +17,7 @@ class Wikipedia(Docstore):
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
raise ValueError(
|
raise ValueError(
|
||||||
"Could not import wikipedia python package. "
|
"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]:
|
def search(self, search: str) -> Union[str, Document]:
|
||||||
|
Loading…
Reference in New Issue
Block a user