diff options
Diffstat (limited to 'src/mailman/interfaces/workflow.py')
| -rw-r--r-- | src/mailman/interfaces/workflow.py | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/mailman/interfaces/workflow.py b/src/mailman/interfaces/workflow.py index bfd3ab89d..bf2138959 100644 --- a/src/mailman/interfaces/workflow.py +++ b/src/mailman/interfaces/workflow.py @@ -17,16 +17,11 @@ """Interfaces describing the state of a workflow.""" -__all__ = [ - 'IWorkflowState', - 'IWorkflowStateManager', - ] - - +from mailman import public from zope.interface import Attribute, Interface - +@public class IWorkflowState(Interface): """The state of a workflow.""" @@ -39,7 +34,7 @@ class IWorkflowState(Interface): data = Attribute('Additional data (may be JSON-encoded).') - +@public class IWorkflowStateManager(Interface): """The workflow states manager.""" |
