mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-15 12:44:52 +00:00
7c219fd731
git-subtree-dir: SpiffWorkflow git-subtree-split: 63db3e45947ec66b8d0efc2c74064004f8ff482c
10 lines
208 B
Python
10 lines
208 B
Python
from SpiffWorkflow.spiff.specs.spiff_task import SpiffBpmnTask
|
|
|
|
class NoneTask(SpiffBpmnTask):
|
|
|
|
def is_engine_task(self):
|
|
return False
|
|
|
|
@property
|
|
def spec_type(self):
|
|
return 'Task' |