mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-03-03 18:40:39 +00:00
10 lines
336 B
Python
10 lines
336 B
Python
|
from decimal import Decimal
|
||
|
|
||
|
from SpiffWorkflow.bpmn.PythonScriptEngine import PythonScriptEngine
|
||
|
|
||
|
from ..DecisionRunner import DecisionRunner
|
||
|
|
||
|
class PythonDecisionRunner(DecisionRunner):
|
||
|
|
||
|
def __init__(self, filename):
|
||
|
super().__init__(PythonScriptEngine(scripting_additions={'Decimal': Decimal}), filename, 'python_engine')
|