mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-15 12:44:52 +00:00
10 lines
221 B
Python
10 lines
221 B
Python
|
from SpiffWorkflow.spiff.specs.spiff_task import SpiffBpmnTask
|
||
|
|
||
|
class ManualTask(SpiffBpmnTask):
|
||
|
|
||
|
def is_engine_task(self):
|
||
|
return False
|
||
|
|
||
|
@property
|
||
|
def spec_type(self):
|
||
|
return 'Manual Task'
|