]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Remove unneeded import
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 16 Mar 2021 22:16:17 +0000 (18:16 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 16 Mar 2021 22:17:19 +0000 (18:17 -0400)
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)

test/dialect/postgresql/test_types.py

index a6658b3982c74d0e7c26ae672c5ab9c8fa0abd26..559cac8af135f622f11fb133564f51e1e677bc0e 100644 (file)
@@ -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