fmartingr
/
jeeves
Archived
1
0
Fork 0

Add argument values to execution

This commit is contained in:
Felipe Martin 2020-04-30 18:27:10 +02:00
parent d28acdc8b4
commit 5e9d8847ea
Signed by: fmartingr
GPG Key ID: 716BC147715E716F
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ class Executor:
for argument in self._flow.arguments:
# TODO: What happens if not default?
self._arguments[argument.name] = defined_arguments.get(argument.name, argument.default)
self._execution.arguments = self._arguments
@property
def steps(self):