From 55c6f49751a268bbc6daf4bbaf73fd72ff866a65 Mon Sep 17 00:00:00 2001 From: Stefano Borini <sborini@enthought.com> Date: Fri, 11 Aug 2017 14:08:31 +0100 Subject: [PATCH] Documentation fixes --- .../notification_listeners/base_notification_listener.py | 8 ++++---- .../base_notification_listener_model.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/force_bdss/notification_listeners/base_notification_listener.py b/force_bdss/notification_listeners/base_notification_listener.py index 3ea02af..e4f9464 100644 --- a/force_bdss/notification_listeners/base_notification_listener.py +++ b/force_bdss/notification_listeners/base_notification_listener.py @@ -8,18 +8,18 @@ from .i_notification_listener_factory import INotificationListenerFactory class BaseNotificationListener(ABCHasStrictTraits): """Base class for the Notification Listener. - Inherit this class for your MCO implementation + Inherit this class for your listener implementation """ #: A reference to the factory factory = Instance(INotificationListenerFactory) def __init__(self, factory, *args, **kwargs): - """Initializes the MCO. + """Initializes the notification listener. Parameters ---------- - factory: BaseMCOFactory - The factory this BaseMCO belongs to + factory: BaseNotificationListener + The factory this Notification Listener belongs to """ self.factory = factory super(BaseNotificationListener, self).__init__(*args, **kwargs) diff --git a/force_bdss/notification_listeners/base_notification_listener_model.py b/force_bdss/notification_listeners/base_notification_listener_model.py index 821a650..ef7e58b 100644 --- a/force_bdss/notification_listeners/base_notification_listener_model.py +++ b/force_bdss/notification_listeners/base_notification_listener_model.py @@ -5,7 +5,7 @@ from force_bdss.notification_listeners.i_notification_listener_factory import \ class BaseNotificationListenerModel(ABCHasStrictTraits): - """Base class for the specific MCO models. + """Base class for the specific Notification Listener models. This model will also provide, through traits/traitsui magic the View that will appear in the workflow manager UI. -- GitLab