From 893cd540abe279a8f5ea087ea291bfb478912c9e Mon Sep 17 00:00:00 2001 From: Michael Carlstrom Date: Tue, 23 Jul 2024 09:45:15 -0400 Subject: [PATCH] more general? --- mypy/test/teststubgen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy/test/teststubgen.py b/mypy/test/teststubgen.py index 89684faa8ee2..1cd463f41160 100644 --- a/mypy/test/teststubgen.py +++ b/mypy/test/teststubgen.py @@ -949,7 +949,7 @@ def test_generic_class(self) -> None: exec("class Test[A]: ...") # type: ignore used for older versions of python type checking - class TestClass[A]: ... # type: ignore[syntax] + class TestClass[A]: ... # type: ignore output: list[str] = [] mod = ModuleType("module", "")