summaryrefslogtreecommitdiff
path: root/src/mailman/database/tests
diff options
context:
space:
mode:
authorBarry Warsaw2016-03-27 22:14:47 -0400
committerBarry Warsaw2016-03-27 22:14:47 -0400
commit532045c68c6325fa90d74572b6c035c666470849 (patch)
treee5acc8183a22cb03ac30d155675904fb23ca05fb /src/mailman/database/tests
parentd13e7ece87ceefadcb5273e93e5b0caeade0e600 (diff)
downloadmailman-532045c68c6325fa90d74572b6c035c666470849.tar.gz
mailman-532045c68c6325fa90d74572b6c035c666470849.tar.zst
mailman-532045c68c6325fa90d74572b6c035c666470849.zip
Import order flake8 plugin.
Fix lots of import order errors discovered by the new plugin.
Diffstat (limited to 'src/mailman/database/tests')
-rw-r--r--src/mailman/database/tests/test_factory.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/database/tests/test_factory.py b/src/mailman/database/tests/test_factory.py
index 0c2e595c9..d8593cc76 100644
--- a/src/mailman/database/tests/test_factory.py
+++ b/src/mailman/database/tests/test_factory.py
@@ -26,8 +26,8 @@ from mailman.database.factory import LAST_STORM_SCHEMA_VERSION, SchemaManager
from mailman.database.model import Model
from mailman.interfaces.database import DatabaseError
from mailman.testing.layers import ConfigLayer
-from sqlalchemy import MetaData, Table, Column, Integer, Unicode
-from sqlalchemy.exc import ProgrammingError, OperationalError
+from sqlalchemy import Column, Integer, MetaData, Table, Unicode
+from sqlalchemy.exc import OperationalError, ProgrammingError
from sqlalchemy.schema import Index
from unittest.mock import patch