Remove the base postfix for engine abstract base class

Remove the non-standard pattern of calling the engine
base class EngineBase; since it's already obvious that
its a base class by it existing in the base engine
module.

Change-Id: Ia146ec6541ee96aa6a78fa659267d2a69e3b9e97
This commit is contained in:
Joshua Harlow
2014-12-10 23:04:30 -08:00
parent 880f7d28b9
commit 79ff9e7ea7
2 changed files with 2 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ def _start_stop(executor):
executor.stop()
class ActionEngine(base.EngineBase):
class ActionEngine(base.Engine):
"""Generic action-based engine.
This engine compiles the flow (and any subflows) into a compilation unit

View File

@@ -25,7 +25,7 @@ from taskflow.utils import misc
@six.add_metaclass(abc.ABCMeta)
class EngineBase(object):
class Engine(object):
"""Base for all engines implementations.
:ivar notifier: A notification object that will dispatch events that