(self)
| 55 | |
| 56 | @property |
| 57 | def tgtExtraCols(self): |
| 58 | cols = [] |
| 59 | if not GraphSettings.getInstance().get('ignoreResists'): |
| 60 | cols.append('Target Resists') |
| 61 | cols.extend(('Speed', 'SigRadius', 'Radius', 'FullHP')) |
| 62 | return cols |
| 63 | |
| 64 | # Calculation stuff |
| 65 | _normalizers = {('distance', 'km'): lambda v, src, tgt: None if v is None else v * 1000, |
nothing calls this directly
no test coverage detected