From 4d9e8a2d5f0eb19733499e3f952b9237ce70ef7c Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Wed, 13 Mar 2024 17:34:13 -0700 Subject: [PATCH] Update error msg --- langgraph/checkpoint/sqlite.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/langgraph/checkpoint/sqlite.py b/langgraph/checkpoint/sqlite.py index f73ebd840..6c8b75411 100644 --- a/langgraph/checkpoint/sqlite.py +++ b/langgraph/checkpoint/sqlite.py @@ -119,14 +119,14 @@ class SqliteSaver(BaseCheckpointSaver, AbstractContextManager): } async def aget_tuple(self, config: RunnableConfig) -> Optional[CheckpointTuple]: - raise NotImplementedError + raise NotImplementedError("Use AsyncSqliteSaver instead") async def alist( self, config: RunnableConfig ) -> AsyncIterator[tuple[RunnableConfig, Checkpoint]]: - raise NotImplementedError + raise NotImplementedError("Use AsyncSqliteSaver instead") async def aput( self, config: RunnableConfig, checkpoint: Checkpoint ) -> RunnableConfig: - raise NotImplementedError + raise NotImplementedError("Use AsyncSqliteSaver instead")