From 9e3dec25e3c9dabc58da3ce6ca4b1d09cb7c5118 Mon Sep 17 00:00:00 2001 From: "open-swe[bot]" Date: Fri, 1 Aug 2025 22:55:03 +0000 Subject: [PATCH] Apply patch [skip ci] --- libs/langgraph/langgraph/pregel/_scratchpad.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 libs/langgraph/langgraph/pregel/_scratchpad.py diff --git a/libs/langgraph/langgraph/pregel/_scratchpad.py b/libs/langgraph/langgraph/pregel/_scratchpad.py deleted file mode 100644 index 1e8eb8a8b..000000000 --- a/libs/langgraph/langgraph/pregel/_scratchpad.py +++ /dev/null @@ -1,18 +0,0 @@ -import dataclasses -from typing import Any, Callable - -from langgraph.types import _DC_KWARGS - - -@dataclasses.dataclass(**_DC_KWARGS) -class PregelScratchpad: - step: int - stop: int - # call - call_counter: Callable[[], int] - # interrupt - interrupt_counter: Callable[[], int] - get_null_resume: Callable[[bool], Any] - resume: list[Any] - # subgraph - subgraph_counter: Callable[[], int]