(self)
| 1340 | |
| 1341 | @property |
| 1342 | def activeDrones(self): |
| 1343 | amount = 0 |
| 1344 | for d in self.drones: |
| 1345 | amount += d.amountActive |
| 1346 | |
| 1347 | return amount |
| 1348 | |
| 1349 | @property |
| 1350 | def probeSize(self): |
nothing calls this directly
no outgoing calls
no test coverage detected