1
0
forked from IPKM/nmreval

sub function show numbering; closes #70

This commit is contained in:
Dominik Demuth
2023-05-19 18:13:57 +02:00
parent 2adf15104f
commit 65034d4518
3 changed files with 43 additions and 13 deletions

View File

@ -653,12 +653,10 @@ class UpperManagement(QtCore.QObject):
else:
continue
for key, pvalue in data.parameter.items():
name = pvalue.full_name
fit_key = key + data.model_name
for fit_key, pvalue in data.parameter.items():
if fit_key not in fit_dict:
fit_dict[fit_key] = [[], name]
fit_dict[fit_key] = [[], fit_key]
err = 0 if pvalue.error is None else pvalue.error