From 5e9d8847ea7594043b771fa51bd4836c593579c6 Mon Sep 17 00:00:00 2001 From: Felipe Martin Date: Thu, 30 Apr 2020 18:27:10 +0200 Subject: [PATCH] Add argument values to execution --- jeeves/core/executor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jeeves/core/executor.py b/jeeves/core/executor.py index 9953bc8..8aff350 100644 --- a/jeeves/core/executor.py +++ b/jeeves/core/executor.py @@ -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):