summaryrefslogtreecommitdiff
path: root/taskflow/engines/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'taskflow/engines/base.py')
-rw-r--r--taskflow/engines/base.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/taskflow/engines/base.py b/taskflow/engines/base.py
index 92ecdbd..3331c1e 100644
--- a/taskflow/engines/base.py
+++ b/taskflow/engines/base.py
@@ -55,11 +55,13 @@ class Engine(object, metaclass=abc.ABCMeta):
"""The options that were passed to this engine on construction."""
return self._options
- @abc.abstractproperty
+ @property
+ @abc.abstractmethod
def storage(self):
"""The storage unit for this engine."""
- @abc.abstractproperty
+ @property
+ @abc.abstractmethod
def statistics(self):
"""A dictionary of runtime statistics this engine has gathered.