Skip to content

Commit

Permalink
community[patch]: Fixed issue with importing Row from sqlalchemy (#14488
Browse files Browse the repository at this point in the history
)

- **Description:** Fixed import of Row in cache.py, 
- **Issue:** the issue # #13464
https://creditone.us.to/langchain-ai/langchain/issues/13464,
  - **Dependencies:** None,
  - **Twitter handle:** @frankybridman

Co-authored-by: Harrison Chase <[email protected]>
  • Loading branch information
FKouhai and hwchase17 authored Dec 13, 2023
1 parent ab94119 commit 8a4162d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/community/langchain_community/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
cast,
)

from sqlalchemy import Column, Integer, Row, String, create_engine, select
from sqlalchemy import Column, Integer, String, create_engine, select
from sqlalchemy.engine import Row
from sqlalchemy.engine.base import Engine
from sqlalchemy.orm import Session

Expand Down

0 comments on commit 8a4162d

Please sign in to comment.