(self)
| 89 | return sigRadius |
| 90 | |
| 91 | def getRadius(self): |
| 92 | if self.isFit: |
| 93 | radius = self.item.ship.getModifiedItemAttr('radius') |
| 94 | elif self.isProfile: |
| 95 | radius = self.item.radius |
| 96 | else: |
| 97 | radius = None |
| 98 | return radius |
| 99 | |
| 100 | |
| 101 | class SourceWrapper(BaseWrapper): |
no test coverage detected