diff options
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 |
