Fix `conn` field definition in SQLiteEntityStore (#15440)

pull/16382/head
Bob Lin 5 months ago committed by GitHub
parent e1c59779ad
commit acc14802d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -236,6 +236,12 @@ class SQLiteEntityStore(BaseEntityStore):
session_id: str = "default"
table_name: str = "memory_store"
conn: Any = None
class Config:
"""Configuration for this pydantic object."""
arbitrary_types_allowed = True
def __init__(
self,

Loading…
Cancel
Save