Commit 78ac66b7 authored by Georgios Dagkakis's avatar Georgios Dagkakis

correction in plugin. read correct types

parent a54233ef
...@@ -13,8 +13,8 @@ class DefaultTabularExit(plugin.OutputPreparationPlugin): ...@@ -13,8 +13,8 @@ class DefaultTabularExit(plugin.OutputPreparationPlugin):
""" """
def postprocess(self, data): def postprocess(self, data):
numberOfReplications=data['general']['numberOfReplications'] numberOfReplications=int(data['general']['numberOfReplications'])
confidenceLevel=data['general']['confidenceLevel'] confidenceLevel=float(data['general']['confidenceLevel'])
if numberOfReplications==1: if numberOfReplications==1:
# create the titles of the columns # create the titles of the columns
data['result']['result_list'][0]['exit_output'] = [['Exit Id','Throughput', 'Takt Time', 'Lifespan']] data['result']['result_list'][0]['exit_output'] = [['Exit Id','Throughput', 'Takt Time', 'Lifespan']]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment