10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 03:07:44 +02:00

Fix a bug when absorption and fluorescences are mixing

This commit is contained in:
Mickaël Véril 2019-12-17 14:22:32 +01:00
parent e5a47f7ed7
commit 295404548b

View File

@ -95,7 +95,8 @@ class dataFileBase(object):
data.molecule=mymolecule
data.method=mymethod
data.excitations.append(excitationValue(firstState,finst[0],val,type=finst[2],isUnsafe=unsafe))
datalist.append(data)
for value in datacls.values():
datalist.append(value)
return datalist
elif format==Format.COLUMN:
subtablesindex=list()