From 401d7a7f009ca2e282b1a0d1b880dc602afd39dc Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Wed, 8 Mar 2023 11:45:38 +0000 Subject: gh-102515: Remove unused imports in the `Lib/` directory (#102516) --- Lib/test/test_enum.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'Lib/test/test_enum.py') diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index 0a2e0c14d26..2b14590b2c2 100644 --- a/Lib/test/test_enum.py +++ b/Lib/test/test_enum.py @@ -20,7 +20,6 @@ from pickle import dumps, loads, PicklingError, HIGHEST_PROTOCOL from test import support from test.support import ALWAYS_EQ from test.support import threading_helper -from textwrap import dedent from datetime import timedelta python_version = sys.version_info[:2] @@ -1187,7 +1186,6 @@ class TestSpecial(unittest.TestCase): # class SillyInt(HexInt): __qualname__ = 'SillyInt' - pass class MyOtherEnum(SillyInt, enum.Enum): __qualname__ = 'MyOtherEnum' D = 4 -- cgit v1.2.3