diff options
Diffstat (limited to 'src/mailman/core/system.py')
| -rw-r--r-- | src/mailman/core/system.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mailman/core/system.py b/src/mailman/core/system.py index f773a9f7f..c4489d926 100644 --- a/src/mailman/core/system.py +++ b/src/mailman/core/system.py @@ -17,11 +17,6 @@ """System information.""" -__all__ = [ - 'system', - ] - - import sys from mailman import version @@ -29,7 +24,6 @@ from mailman.interfaces.system import ISystem from zope.interface import implementer - @implementer(ISystem) class System: """See `ISystem`.""" @@ -46,3 +40,4 @@ class System: system = System() +__all__ = ['system'] |
