(self)
| 719 | |
| 720 | @property |
| 721 | def isCargoHold(self): |
| 722 | return ( |
| 723 | all(i is not None and i.isCargo for i in self.itemSpecs) and |
| 724 | not self.isDroneBay and not self.isFighterBay) |
| 725 | |
| 726 | |
| 727 | class BaseItemSpec: |
nothing calls this directly
no outgoing calls
no test coverage detected