improved doc on softcal and Module.registerCallback

Change-Id: I12b1f7a2d29435d989fb9953f72bea181e6cb4f7
This commit is contained in:
2020-10-28 09:59:40 +01:00
parent 29c66fa19a
commit cf24bbc3c3
2 changed files with 14 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class StdParser:
self.xdata, self.ydata = [], []
def parse(self, line):
"""get numbers from a line and put them to self.output"""
"""get numbers from a line and put them to self.xdata / self.ydata"""
row = line.split()
try:
self.xdata.append(float(row[self.xcol]))