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
1 changed files with 1 additions and 0 deletions

View File

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