summaryrefslogtreecommitdiff
path: root/src/mailman/rules/no_subject.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/rules/no_subject.py')
-rw-r--r--src/mailman/rules/no_subject.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/mailman/rules/no_subject.py b/src/mailman/rules/no_subject.py
index 0348be5c5..ff63d8c37 100644
--- a/src/mailman/rules/no_subject.py
+++ b/src/mailman/rules/no_subject.py
@@ -17,17 +17,15 @@
"""The no-Subject header rule."""
-__all__ = [
- 'NoSubject',
- ]
-
-
from mailman.core.i18n import _
from mailman.interfaces.rules import IRule
from zope.interface import implementer
+__all__ = [
+ 'NoSubject',
+ ]
+
-
@implementer(IRule)
class NoSubject:
"""The no-Subject rule."""