summaryrefslogtreecommitdiff
path: root/src/mailman/rules/truth.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/rules/truth.py')
-rw-r--r--src/mailman/rules/truth.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/mailman/rules/truth.py b/src/mailman/rules/truth.py
index 3189c233a..16b2e1893 100644
--- a/src/mailman/rules/truth.py
+++ b/src/mailman/rules/truth.py
@@ -17,17 +17,15 @@
"""A rule which always matches."""
-__all__ = [
- 'Truth',
- ]
-
-
from mailman.core.i18n import _
from mailman.interfaces.rules import IRule
from zope.interface import implementer
+__all__ = [
+ 'Truth',
+ ]
+
-
@implementer(IRule)
class Truth:
"""Look for any previous rule match."""