diff options
| author | Joshua Harlow <harlowja@gmail.com> | 2014-12-10 23:04:30 -0800 |
|---|---|---|
| committer | Joshua Harlow <harlowja@gmail.com> | 2014-12-10 23:25:08 -0800 |
| commit | 79ff9e7ea7fbb5c9bd022dd341eb28b68738d074 (patch) | |
| tree | 4403e135d4b013279e1291be8c4161d752571a75 /taskflow/engines/base.py | |
| parent | 880f7d28b95d01d3de36e4b8ac61768cd4310a59 (diff) | |
| download | taskflow-79ff9e7ea7fbb5c9bd022dd341eb28b68738d074.tar.gz | |
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
Diffstat (limited to 'taskflow/engines/base.py')
| -rw-r--r-- | taskflow/engines/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/engines/base.py b/taskflow/engines/base.py index 2c40972..dd477a5 100644 --- a/taskflow/engines/base.py +++ b/taskflow/engines/base.py @@ -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 |
