diff options
| author | Barry Warsaw | 2009-01-04 00:22:08 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-01-04 00:22:08 -0500 |
| commit | 59d2b6181ffa9517da97a6eb43a51396b1ff04f4 (patch) | |
| tree | 58f2a968e5ccaf86e3dbc3616e3d8ab60c244632 /mailman/database/requests.py | |
| parent | bad70b0046b5612bf1342703cf5de7580e66fb45 (diff) | |
| download | mailman-59d2b6181ffa9517da97a6eb43a51396b1ff04f4.tar.gz mailman-59d2b6181ffa9517da97a6eb43a51396b1ff04f4.tar.zst mailman-59d2b6181ffa9517da97a6eb43a51396b1ff04f4.zip | |
Diffstat (limited to 'mailman/database/requests.py')
| -rw-r--r-- | mailman/database/requests.py | 15 |
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 |
