(self, fit)
| 238 | |
| 239 | # Context menu handlers |
| 240 | def addFit(self, fit): |
| 241 | if fit is None: |
| 242 | return |
| 243 | if self.containsFitID(fit.ID): |
| 244 | return |
| 245 | self.appendItem(fit) |
| 246 | self.updateView() |
| 247 | self.graphFrame.draw() |
| 248 | |
| 249 | def getExistingFitIDs(self): |
| 250 | return [w.item.ID for w in self._wrappers if w.isFit] |
nothing calls this directly
no test coverage detected