Skip to content
Snippets Groups Projects
Commit f1ee2156 authored by Stefano Borini's avatar Stefano Borini
Browse files

Added documentation to execute_workflow

parent 71f209fa
No related branches found
No related tags found
2 merge requests!162Provide ability to run a single data source and check its results [WIP],!161Refactoring: Moves execution to a separate module.
......@@ -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[:]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment