summaryrefslogtreecommitdiff
path: root/src/mailman/model/digests.py
diff options
context:
space:
mode:
authorBarry Warsaw2016-03-23 23:40:54 -0400
committerBarry Warsaw2016-03-23 23:40:54 -0400
commitf51c63ca108134dd30f26641bef15bfcddd6e502 (patch)
treeb3cc41a2d54d11f62886db7ceab3985b9bee18f1 /src/mailman/model/digests.py
parentab2b619db5f3de47cffc2740901c4f82958a7d96 (diff)
downloadmailman-f51c63ca108134dd30f26641bef15bfcddd6e502.tar.gz
mailman-f51c63ca108134dd30f26641bef15bfcddd6e502.tar.zst
mailman-f51c63ca108134dd30f26641bef15bfcddd6e502.zip
Diffstat (limited to 'src/mailman/model/digests.py')
-rw-r--r--src/mailman/model/digests.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/mailman/model/digests.py b/src/mailman/model/digests.py
index e5a49a8a7..39eef0c6f 100644
--- a/src/mailman/model/digests.py
+++ b/src/mailman/model/digests.py
@@ -17,11 +17,6 @@
"""One last digest."""
-__all__ = [
- 'OneLastDigest',
- ]
-
-
from mailman.database.model import Model
from mailman.database.types import Enum
from mailman.interfaces.digests import IOneLastDigest
@@ -30,8 +25,11 @@ from sqlalchemy import Column, Integer, ForeignKey
from sqlalchemy.orm import relationship
from zope.interface import implementer
+__all__ = [
+ 'OneLastDigest',
+ ]
+
-
@implementer(IOneLastDigest)
class OneLastDigest(Model):
"""See `IOneLastDigest`."""