From 0502699136c9d5b900f76b59b5d0aefc953a42bc Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Mon, 6 May 2024 15:14:02 -0700 Subject: [PATCH] Update docstrings --- langgraph/checkpoint/aiosqlite.py | 1 - langgraph/checkpoint/memory.py | 1 - langgraph/checkpoint/sqlite.py | 1 - 3 files changed, 3 deletions(-) diff --git a/langgraph/checkpoint/aiosqlite.py b/langgraph/checkpoint/aiosqlite.py index c9a322561..35f3c209b 100644 --- a/langgraph/checkpoint/aiosqlite.py +++ b/langgraph/checkpoint/aiosqlite.py @@ -25,7 +25,6 @@ class AsyncSqliteSaver(BaseCheckpointSaver, AbstractAsyncContextManager): Args: conn (aiosqlite.Connection): The asynchronous SQLite database connection. serde (Optional[SerializerProtocol]): The serializer to use for serializing and deserializing checkpoints. Defaults to JsonPlusSerializerCompat. - at (Optional[CheckpointAt]): The checkpoint strategy to use. Defaults to None. Examples: diff --git a/langgraph/checkpoint/memory.py b/langgraph/checkpoint/memory.py index fb49bab58..2230d57a2 100644 --- a/langgraph/checkpoint/memory.py +++ b/langgraph/checkpoint/memory.py @@ -20,7 +20,6 @@ class MemorySaver(BaseCheckpointSaver): Args: serde (Optional[SerializerProtocol]): The serializer to use for serializing and deserializing checkpoints. Defaults to None. - at (Optional[CheckpointAt]): The checkpoint strategy to use. Defaults to None. Examples: import asyncio diff --git a/langgraph/checkpoint/sqlite.py b/langgraph/checkpoint/sqlite.py index bde4a5d0a..596bc2643 100644 --- a/langgraph/checkpoint/sqlite.py +++ b/langgraph/checkpoint/sqlite.py @@ -57,7 +57,6 @@ class SqliteSaver(BaseCheckpointSaver, AbstractContextManager): Args: conn (sqlite3.Connection): The SQLite database connection. serde (Optional[SerializerProtocol]): The serializer to use for serializing and deserializing checkpoints. Defaults to JsonPlusSerializerCompat. - at (Optional[CheckpointAt]): The checkpoint strategy to use. Defaults to None. Examples: