From: Mike Bayer Date: Tue, 16 Mar 2021 22:16:17 +0000 (-0400) Subject: Remove unneeded import X-Git-Tag: rel_1_3_24~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d13542598452681739bc73b00cf956e538dffb52;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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 (cherry picked from commit ecb392c5f927ab117f9704ce373bf2af1dbe5b69) --- diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index a6658b3982..559cac8af1 100644 --- a/test/dialect/postgresql/test_types.py +++ b/test/dialect/postgresql/test_types.py @@ -64,11 +64,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 - tztable = notztable = metadata = table = None