From 7f8ec2c5905dece1d8f2b188c572d557f244ffe6 Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Tue, 10 Dec 2024 13:46:45 -0800 Subject: [PATCH] Fix --- libs/checkpoint/langgraph/checkpoint/memory/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/checkpoint/langgraph/checkpoint/memory/__init__.py b/libs/checkpoint/langgraph/checkpoint/memory/__init__.py index b11f6e21c..cb6b7b852 100644 --- a/libs/checkpoint/langgraph/checkpoint/memory/__init__.py +++ b/libs/checkpoint/langgraph/checkpoint/memory/__init__.py @@ -454,6 +454,7 @@ class MemorySaver( task_id (str): Identifier for the task creating the writes. return self.put_writes(config, writes, task_id) """ + return self.put_writes(config, writes, task_id) def get_next_version(self, current: Optional[str], channel: ChannelProtocol) -> str: if current is None: