From f1ee215612863e3c5bb40b168403f810060eabbf Mon Sep 17 00:00:00 2001 From: Stefano Borini <sborini@enthought.com> Date: Fri, 29 Jun 2018 11:04:10 +0100 Subject: [PATCH] Added documentation to execute_workflow --- force_bdss/execution.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/force_bdss/execution.py b/force_bdss/execution.py index 0fd03b1..5b13be2 100644 --- a/force_bdss/execution.py +++ b/force_bdss/execution.py @@ -7,6 +7,18 @@ log = logging.getLogger(__name__) def execute_workflow(workflow, data_values): """Executes the given workflow using the list of data values. Returns a list of data values for the KPI results + + Parameters + ---------- + workflow: Workflow + The instance of the workflow + + data_values: List + The data values that the MCO generally provides. + + Returns + ------- + list: A list of DataValues containing the KPI results. """ available_data_values = data_values[:] -- GitLab