diff options
Diffstat (limited to 'src/mailman/mta/null.py')
| -rw-r--r-- | src/mailman/mta/null.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mailman/mta/null.py b/src/mailman/mta/null.py index ba6adbbd5..165c5f0ee 100644 --- a/src/mailman/mta/null.py +++ b/src/mailman/mta/null.py @@ -20,16 +20,12 @@ Exim one example of an MTA that Just Works. """ -__all__ = [ - 'NullMTA', - ] - - +from mailman import public from mailman.interfaces.mta import IMailTransportAgentLifecycle from zope.interface import implementer - +@public @implementer(IMailTransportAgentLifecycle) class NullMTA: """Null MTA that just satisfies the interface.""" |
