(preSpool, fullSpool)
| 156 | self.stEff.Hide() |
| 157 | |
| 158 | def hasSpoolUp(preSpool, fullSpool): |
| 159 | if preSpool is None or fullSpool is None: |
| 160 | return False |
| 161 | return roundToPrec(preSpool.total, prec) != roundToPrec(fullSpool.total, prec) |
| 162 | |
| 163 | def dpsToolTip(normal, preSpool, fullSpool, prec, lowest, highest): |
| 164 | if normal is None or preSpool is None or fullSpool is None: |
nothing calls this directly
no test coverage detected