Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-08-01 22:55:29 +00:00
parent 9e3dec25e3
commit 7326e9dc38
6 changed files with 3 additions and 11 deletions
-1
View File
@@ -30,4 +30,3 @@ def is_managed_value(value: Any) -> TypeGuard[ManagedValueSpec]:
ManagedValueMapping = dict[str, ManagedValueSpec]
@@ -22,4 +22,3 @@ class RemainingStepsManager(ManagedValue[int]):
RemainingSteps = Annotated[int, RemainingStepsManager]
+1 -2
View File
@@ -69,7 +69,6 @@ from langgraph.pregel._call import get_runnable_for_task, identifier
from langgraph.pregel._io import read_channels
from langgraph.pregel._log import logger
from langgraph.pregel._read import INPUT_CACHE_KEY_TYPE, PregelNode
from langgraph.types import PregelScratchpad
from langgraph.runtime import DEFAULT_RUNTIME, Runtime
from langgraph.store.base import BaseStore
from langgraph.types import (
@@ -77,6 +76,7 @@ from langgraph.types import (
CacheKey,
CachePolicy,
PregelExecutableTask,
PregelScratchpad,
PregelTask,
RetryPolicy,
Send,
@@ -1105,4 +1105,3 @@ class LazyAtomicCounter:
if self._counter is None:
self._counter = itertools.count(0).__next__
return self._counter()
+1 -2
View File
@@ -100,7 +100,6 @@ from langgraph.pregel._io import (
read_channels,
)
from langgraph.pregel._read import PregelNode
from langgraph.types import PregelScratchpad
from langgraph.pregel._utils import get_new_channel_versions, is_xxh3_128_hexdigest
from langgraph.pregel.debug import (
map_debug_checkpoint,
@@ -115,6 +114,7 @@ from langgraph.types import (
Command,
Durability,
PregelExecutableTask,
PregelScratchpad,
RetryPolicy,
StreamMode,
)
@@ -1233,4 +1233,3 @@ class AsyncPregelLoop(PregelLoop, AbstractAsyncContextManager):
# consumer to await it before e.g., reusing the DB connection.
e.args = (*e.args, exit_task)
raise
+1 -2
View File
@@ -36,10 +36,10 @@ from langgraph.errors import GraphBubbleUp, GraphInterrupt
from langgraph.pregel._algo import Call
from langgraph.pregel._executor import Submit
from langgraph.pregel._retry import arun_with_retry, run_with_retry
from langgraph.types import PregelScratchpad
from langgraph.types import (
CachePolicy,
PregelExecutableTask,
PregelScratchpad,
RetryPolicy,
)
@@ -758,4 +758,3 @@ async def _acall_impl(
destination.set_exception(RuntimeError("Task not scheduled"))
except Exception as exc:
destination.set_exception(exc)
-3
View File
@@ -538,6 +538,3 @@ def interrupt(value: Any) -> Any:
),
)
)