From 072f5ceaad8f248418d5e114ca12dfe1c933b518 Mon Sep 17 00:00:00 2001 From: Fangyi Zhou Date: Mon, 24 Nov 2025 00:54:28 +0000 Subject: [PATCH] constructors_callable: fix a type hint in comments --- conformance/tests/constructors_callable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conformance/tests/constructors_callable.py b/conformance/tests/constructors_callable.py index 7ad04dcb7..bfd1e405f 100644 --- a/conformance/tests/constructors_callable.py +++ b/conformance/tests/constructors_callable.py @@ -179,7 +179,7 @@ def __new__(cls, x: list[T], y: list[T]) -> Self: r8 = accepts_callable(Class8) -reveal_type(r8) # `def [T] (x: T, y: list[T]) -> Class8[T]` +reveal_type(r8) # `def [T] (x: list[T], y: list[T]) -> Class8[T]` assert_type(r8([""], [""]), Class8[str]) r8([1], [""]) # E