From 12e19cb7ea9866ca825b76b9cd00d2ed3a731f15 Mon Sep 17 00:00:00 2001 From: John Kennedy <65985482+jkennedyvz@users.noreply.github.com> Date: Sun, 28 Jun 2026 00:55:41 +0000 Subject: [PATCH] chore: align type-checker wording with ty Co-authored-by: open-swe[bot] --- .gitignore | 2 +- libs/langgraph/tests/test_stream_events_v3.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b154d3b56..ae480f00b 100644 --- a/.gitignore +++ b/.gitignore @@ -85,7 +85,7 @@ ENV/ env.bak/ venv.bak/ -# mypy +# Python type checker caches .mypy_cache/ .dmypy.json dmypy.json diff --git a/libs/langgraph/tests/test_stream_events_v3.py b/libs/langgraph/tests/test_stream_events_v3.py index 6399b3084..cc9c9ec9a 100644 --- a/libs/langgraph/tests/test_stream_events_v3.py +++ b/libs/langgraph/tests/test_stream_events_v3.py @@ -1150,7 +1150,7 @@ class TestV2ValidationErrors: # --- type narrowing compile-time checks --- -# These assert_type calls verify that mypy narrows the union correctly. +# These assert_type calls verify that the type checker narrows the union correctly. _OutputT = TypeVar("_OutputT")