Merge branch 'main' of github.com:sartography/spiff-arena

This commit is contained in:
jasquat 2023-02-22 14:42:46 -05:00
commit 9b14510cd1
2 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,10 @@
import re
from os import environ
# Consider: https://flask.palletsprojects.com/en/2.2.x/config/#configuring-from-environment-variables
# and from_prefixed_env(), though we want to ensure that these variables are all documented, so that
# is a benefit of the status quo and having them all in this file explicitly.
SPIFFWORKFLOW_BACKEND_BPMN_SPEC_ABSOLUTE_DIR = environ.get(
"SPIFFWORKFLOW_BACKEND_BPMN_SPEC_ABSOLUTE_DIR"
)

View File

@ -293,6 +293,7 @@ class CustomBpmnScriptEngine(PythonScriptEngine): # type: ignore
"enumerate": enumerate,
"format": format,
"list": list,
"dict": dict,
"map": map,
"pytz": pytz,
"sum": sum,