(self, stuff)
| 68 | raise NotImplementedError |
| 69 | |
| 70 | def getToolTip(self, stuff): |
| 71 | if isinstance(stuff, BaseWrapper): |
| 72 | stuff = stuff.item |
| 73 | if isinstance(stuff, (Fit, TargetProfile)): |
| 74 | return self._getFitTooltip() |
| 75 | return '' |
| 76 | |
| 77 | |
| 78 | class DpsColumn(GraphColumn): |
nothing calls this directly
no test coverage detected