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

Fixed typo

parent f235912d
No related branches found
No related tags found
1 merge request!11Kpi calculators
...@@ -60,10 +60,10 @@ class CoreMCODriver(Plugin): ...@@ -60,10 +60,10 @@ class CoreMCODriver(Plugin):
kpic_bundle = self._find_kpi_calculator_bundle_by_name( kpic_bundle = self._find_kpi_calculator_bundle_by_name(
requested_kpic.name) requested_kpic.name)
if kpic_bundle: if kpic_bundle:
ds_model = kpic_bundle.create_model( kpic_model = kpic_bundle.create_model(
requested_kpic.model_data) requested_kpic.model_data)
kpi_calculator = kpic_bundle.create_data_source( kpi_calculator = kpic_bundle.create_data_source(
self.application, ds_model) self.application, kpic_model)
kpi_results.append(kpi_calculator.run(ds_results)) kpi_results.append(kpi_calculator.run(ds_results))
else: else:
raise Exception( raise Exception(
......
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