(self, parent, data)
| 26 | |
| 27 | class LinearMLILView(TokenizedTextView): |
| 28 | def __init__(self, parent, data): |
| 29 | super(LinearMLILView, self).__init__(parent, data) |
| 30 | self.data = data |
| 31 | self.function = data.entry_function |
| 32 | if self.function is not None: |
| 33 | self.setFunction(self.function) |
| 34 | self.updateLines() |
| 35 | |
| 36 | def generateLines(self): |
| 37 | if self.function is None: |
no test coverage detected