We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b08efd commit 1d97166Copy full SHA for 1d97166
optima/results.py
@@ -1066,7 +1066,7 @@ def select_zeroth(possible_list):
1066
outputstr += sep.join(['Budget', prog]) + sep
1067
outputstr += sep.join(map(str,prog_budgets))
1068
outputstr += '\n'
1069
- total_budgets = {scen_key: select_zeroth(self.budgets[scen_key][:].sum(axis=0)) for scen_key in scen_keys}
+ total_budgets = odict({scen_key: select_zeroth(self.budgets[scen_key][:].sum(axis=0)) for scen_key in scen_keys})
1070
outputstr += sep.join(['Budget', 'TOTAL']) + sep
1071
outputstr += sep.join(map(str, total_budgets.values()))
1072
outputstr += '\n'+'\n'
0 commit comments