mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-01 09:04:03 +00:00
community[patch]: Fixed issue with importing Row from sqlalchemy (#14488)
- **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 <hw.chase.17@gmail.com>
This commit is contained in:
parent
ab94119a53
commit
8a4162d15e
@ -42,7 +42,8 @@ from typing import (
|
||||
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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user