From f2c3b3cc425ae87b114160e11d0b87f0e83649d2 Mon Sep 17 00:00:00 2001 From: Caspar Broekhuizen Date: Sun, 5 Oct 2025 20:07:16 -0700 Subject: [PATCH] style(langgraph): lint --- libs/langgraph/langgraph/pregel/_loop.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/langgraph/langgraph/pregel/_loop.py b/libs/langgraph/langgraph/pregel/_loop.py index 852af000c..e6b68f70c 100644 --- a/libs/langgraph/langgraph/pregel/_loop.py +++ b/libs/langgraph/langgraph/pregel/_loop.py @@ -134,7 +134,7 @@ def DuplexStream(*streams: StreamProtocol) -> StreamProtocol: stream(value) return StreamProtocol(__call__, {mode for s in streams for mode in s.modes}) - + class PregelLoop: config: RunnableConfig @@ -652,8 +652,7 @@ class PregelLoop: return hanging_interrupts def _merge_interrupts( - self, - task_id: str, value: Sequence[Interrupt] + self, task_id: str, value: Sequence[Interrupt] ) -> Sequence[Interrupt]: """Normalize interrupt value to list and merge with existing interrupts.