(self, inlabel, inxdata, inydata)
| 171 | |
| 172 | class DataForOnePlot: |
| 173 | def __init__(self, inlabel, inxdata, inydata): |
| 174 | self.label = inlabel |
| 175 | self.xdata = inxdata |
| 176 | self.ydata = inydata |
| 177 | |
| 178 | dataForAllPlots = [] |
| 179 | for plot in plots: |
nothing calls this directly
no outgoing calls
no test coverage detected