From 069f548d534707df9df687174e1069e2dfdc34ee Mon Sep 17 00:00:00 2001 From: Sydney Runkle Date: Thu, 5 Mar 2026 18:10:14 -0800 Subject: [PATCH] boom --- libs/langgraph/langgraph/pregel/_loop.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/langgraph/langgraph/pregel/_loop.py b/libs/langgraph/langgraph/pregel/_loop.py index 8e86e1410..214e726c0 100644 --- a/libs/langgraph/langgraph/pregel/_loop.py +++ b/libs/langgraph/langgraph/pregel/_loop.py @@ -1153,7 +1153,7 @@ class SyncPregelLoop(PregelLoop, AbstractContextManager): Returns None to start fresh if no such checkpoint exists.""" parent_checkpoint_id = self._get_parent_checkpoint_id() - if parent_checkpoint_id and self.checkpointer: + if parent_checkpoint_id: parent_ns = ( NS_SEP.join(self.checkpoint_ns[:-1]) if self.checkpoint_ns else "" ) @@ -1377,7 +1377,7 @@ class AsyncPregelLoop(PregelLoop, AbstractAsyncContextManager): async def _aget_checkpoint_after_parent(self) -> CheckpointTuple | None: """Async version of `_get_checkpoint_after_parent`.""" parent_checkpoint_id = await self._aget_parent_checkpoint_id() - if parent_checkpoint_id and self.checkpointer: + if parent_checkpoint_id: parent_ns = ( NS_SEP.join(self.checkpoint_ns[:-1]) if self.checkpoint_ns else "" )