Update error msg

This commit is contained in:
Nuno Campos
2024-03-13 17:34:13 -07:00
parent 0d13c6b159
commit 4d9e8a2d5f
+3 -3
View File
@@ -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")