summaryrefslogtreecommitdiff
path: root/src/mailman/database/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/database/types.py')
-rw-r--r--src/mailman/database/types.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mailman/database/types.py b/src/mailman/database/types.py
index 5ffbf3965..045065591 100644
--- a/src/mailman/database/types.py
+++ b/src/mailman/database/types.py
@@ -23,13 +23,14 @@ from __future__ import absolute_import, print_function, unicode_literals
__metaclass__ = type
__all__ = [
'Enum',
- 'UUID'
+ 'UUID',
]
import uuid
+from sqlalchemy import Integer
from sqlalchemy.types import TypeDecorator, BINARY, CHAR
-from sqlalchemy.dailects import postgresql
+from sqlalchemy.dialects import postgresql