From 3edb9b12890025d68dedc52af66623295516c85c Mon Sep 17 00:00:00 2001 From: Srinivas Reddy Thatiparthy Date: Tue, 21 Jan 2025 19:08:44 +0530 Subject: [PATCH] Remove creating an instance B() --- Lib/test/test_warnings/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_warnings/__init__.py b/Lib/test/test_warnings/__init__.py index 2d008b66aebcf1..89595a6085d147 100644 --- a/Lib/test/test_warnings/__init__.py +++ b/Lib/test/test_warnings/__init__.py @@ -1838,7 +1838,6 @@ def __init_subclass__(self, **kwargs): pass class B(A): pass -b = B() """ def setUp(self): self.module = types.ModuleType("testmodule")