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

Fix TBEcorr in method

This commit is contained in:
Mickaël Véril 2019-11-25 11:13:14 +01:00
parent 0c74be22f4
commit b2120ac79e

View File

@ -166,17 +166,12 @@ class method:
string = self.name
if (self.basis):
string+= '/' + self.basis
if (self.TBECorr)
string+=" ("+ self.TBECorr+")"
return string
def toDataString(self):
string=self.name
if (self.basis):
string+=","+self.basis
if (self.TBECorr)
string+=","+self.TBECorr
return string
class code:
def __init__(self,name, version):