From ecb392c5f927ab117f9704ce373bf2af1dbe5b69 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 16 Mar 2021 18:16:17 -0400 Subject: [PATCH] Remove unneeded import this import forgot to get removed from Ia7519ac4371a635f05ac69a3a4d0f4e6d2f04cad , removing it in post-production. We will need "enum" soon enough when we go to Python 3 only. Change-Id: I28297c2ed9f87fd0841076b861b8eeb610754dc3 --- test/dialect/postgresql/test_types.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index 59a6c0c85e..343f3a9865 100644 --- a/test/dialect/postgresql/test_types.py +++ b/test/dialect/postgresql/test_types.py @@ -62,11 +62,6 @@ from sqlalchemy.testing.schema import pep435_enum from sqlalchemy.testing.suite import test_types as suite from sqlalchemy.testing.util import round_decimal -try: - import enum -except ImportError: - enum = None - class FloatCoercionTest(fixtures.TablesTest, AssertsExecutionResults): __only_on__ = "postgresql" -- 2.47.2