Skip to content

Commit

Permalink
Corrected small typo in error message. (#1791)
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-hbst authored Mar 20, 2023
1 parent f6d24d5 commit 5aa8ece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion langchain/docstore/wikipedia.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self) -> None:
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]:
Expand Down

0 comments on commit 5aa8ece

Please sign in to comment.