(self)
| 510 | |
| 511 | @property |
| 512 | def isStandup(self): |
| 513 | if self.category.name == "Structure Module": |
| 514 | return True |
| 515 | if self.isFighter and {'fighterSquadronIsStandupLight', 'fighterSquadronIsStandupHeavy', 'fighterSquadronIsStandupSupport'}.intersection(self.attributes): |
| 516 | return True |
| 517 | return False |
| 518 | |
| 519 | def __repr__(self): |
| 520 | return "Item(ID={}, name={}, display={}) at {}".format( |
nothing calls this directly
no outgoing calls
no test coverage detected