mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-03 20:16:52 +00:00
Corrected small typo in error message. (#1791)
This commit is contained in:
@@ -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]:
|
||||||
|
Reference in New Issue
Block a user