Merge pull request #112 from sartography/add_set

Allow set to be called from scripts
This commit is contained in:
Kevin Burnett 2023-01-27 04:24:25 -08:00 committed by GitHub
commit 19ad0229ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,6 +172,7 @@ class CustomBpmnScriptEngine(PythonScriptEngine): # type: ignore
"sum": sum, "sum": sum,
"time": time, "time": time,
"timedelta": timedelta, "timedelta": timedelta,
"set": set,
} }
# This will overwrite the standard builtins # This will overwrite the standard builtins