(self, drone)
| 160 | return fighter.item.name |
| 161 | |
| 162 | def droneSort(self, drone): |
| 163 | item = drone.item |
| 164 | if item.marketGroup is None: |
| 165 | item = item.metaGroup.parent |
| 166 | |
| 167 | return (gui.builtinAdditionPanes.droneView.DRONE_ORDER.index(item.marketGroup.name), |
| 168 | drone.item.name) |
| 169 | |
| 170 | @staticmethod |
| 171 | def fitSort(fit): |
nothing calls this directly
no outgoing calls
no test coverage detected