From 70e34d245562dd444df79ef1e443f6bd35521af2 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Mon, 30 Jan 2023 18:23:06 +0000 Subject: [PATCH] [DO-NOT-MERGE] Checking to see if pyright verifies stdlib test cases against false negatives correctly --- test_cases/stdlib/check_contextlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_cases/stdlib/check_contextlib.py b/test_cases/stdlib/check_contextlib.py index 648661bca856..934131a27c04 100644 --- a/test_cases/stdlib/check_contextlib.py +++ b/test_cases/stdlib/check_contextlib.py @@ -5,7 +5,7 @@ # See issue #7961 -class Thing(ExitStack): +class Thing(ExitStack): # type: ignore pass