mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-13 13:36:15 +00:00
codespell: workflow, config + some (quite a few) typos fixed (#6785)
Probably the most boring PR to review ;) Individual commits might be easier to digest --------- Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
931e68692e
commit
0d92a7f357
@@ -67,7 +67,7 @@ def test_sql_database_sequential_chain_run() -> None:
|
||||
|
||||
def test_sql_database_sequential_chain_intermediate_steps() -> None:
|
||||
"""Test that commands can be run successfully SEQUENTIALLY and returned
|
||||
in correct format. sWith Intermediate steps"""
|
||||
in correct format. switch Intermediate steps"""
|
||||
engine = create_engine("sqlite:///:memory:")
|
||||
metadata_obj.create_all(engine)
|
||||
stmt = insert(user).values(user_id=13, user_name="Harrison", user_company="Foo")
|
||||
|
@@ -21,7 +21,7 @@ def test_get_nfts_valid_contract() -> None:
|
||||
)
|
||||
result = BlockchainDocumentLoader(contract_address).load()
|
||||
|
||||
print("Tokens returend for valid contract: ", len(result))
|
||||
print("Tokens returned for valid contract: ", len(result))
|
||||
|
||||
assert len(result) == max_alchemy_tokens, (
|
||||
f"Wrong number of NFTs returned. "
|
||||
@@ -43,7 +43,7 @@ def test_get_nfts_with_pagination() -> None:
|
||||
startToken=startToken,
|
||||
).load()
|
||||
|
||||
print("Tokens returend for contract with offset: ", len(result))
|
||||
print("Tokens returned for contract with offset: ", len(result))
|
||||
|
||||
assert len(result) > 0, "No NFTs returned"
|
||||
|
||||
@@ -57,7 +57,7 @@ def test_get_nfts_polygon() -> None:
|
||||
contract_address, BlockchainType.POLYGON_MAINNET
|
||||
).load()
|
||||
|
||||
print("Tokens returend for contract on Polygon: ", len(result))
|
||||
print("Tokens returned for contract on Polygon: ", len(result))
|
||||
|
||||
assert len(result) > 0, "No NFTs returned"
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
"""Test Clarifai vectore store functionality."""
|
||||
"""Test Clarifai vector store functionality."""
|
||||
import time
|
||||
|
||||
from langchain.docstore.document import Document
|
||||
|
Reference in New Issue
Block a user