summaryrefslogtreecommitdiff
path: root/mailman/database/requests.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-01-04 00:22:08 -0500
committerBarry Warsaw2009-01-04 00:22:08 -0500
commit59d2b6181ffa9517da97a6eb43a51396b1ff04f4 (patch)
tree58f2a968e5ccaf86e3dbc3616e3d8ab60c244632 /mailman/database/requests.py
parentbad70b0046b5612bf1342703cf5de7580e66fb45 (diff)
downloadmailman-59d2b6181ffa9517da97a6eb43a51396b1ff04f4.tar.gz
mailman-59d2b6181ffa9517da97a6eb43a51396b1ff04f4.tar.zst
mailman-59d2b6181ffa9517da97a6eb43a51396b1ff04f4.zip
Diffstat (limited to 'mailman/database/requests.py')
-rw-r--r--mailman/database/requests.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/mailman/database/requests.py b/mailman/database/requests.py
index addaf08eb..6e9828cf9 100644
--- a/mailman/database/requests.py
+++ b/mailman/database/requests.py
@@ -17,6 +17,12 @@
"""Implementations of the IRequests and IListRequests interfaces."""
+__metaclass__ = type
+__all__ = [
+ 'Requests',
+ ]
+
+
from datetime import timedelta
from storm.locals import *
from zope.interface import implements
@@ -24,13 +30,8 @@ from zope.interface import implements
from mailman.config import config
from mailman.database.model import Model
from mailman.database.types import Enum
-from mailman.interfaces import IListRequests, IPendable, IRequests, RequestType
-
-
-__metaclass__ = type
-__all__ = [
- 'Requests',
- ]
+from mailman.interfaces.pending import IPendable
+from mailman.interfaces.requests import IListRequests, IRequests, RequestType