From 792f779c188fadf64a2bddde0d17a8243f65948d Mon Sep 17 00:00:00 2001 From: Sydney Runkle Date: Wed, 22 Apr 2026 08:54:58 -0400 Subject: [PATCH] lint --- libs/langgraph/tests/test_delta_channel_benchmark.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/langgraph/tests/test_delta_channel_benchmark.py b/libs/langgraph/tests/test_delta_channel_benchmark.py index ee4f2535f..c9fa338a3 100644 --- a/libs/langgraph/tests/test_delta_channel_benchmark.py +++ b/libs/langgraph/tests/test_delta_channel_benchmark.py @@ -17,7 +17,6 @@ import time from typing import Annotated, Any import pytest - from langchain_core.messages import AIMessage, HumanMessage from langgraph.checkpoint.memory import MemorySaver from typing_extensions import TypedDict @@ -348,7 +347,9 @@ def _run_benchmark_for_checkpointer(cp_hint: Any) -> None: # --------------------------------------------------------------------------- -@pytest.mark.skip(reason="slow benchmark — run manually with: python tests/test_delta_channel_benchmark.py") +@pytest.mark.skip( + reason="slow benchmark — run manually with: python tests/test_delta_channel_benchmark.py" +) def test_delta_channel_benchmark(capsys: Any) -> None: """Storage grows O(N²) for add_messages, O(N) for DeltaChannel.""" with capsys.disabled():