(self)
| 109 | |
| 110 | @property |
| 111 | def isInvalid(self): |
| 112 | if self._item is None: |
| 113 | return True |
| 114 | if self._item.category.name != "Drone": |
| 115 | return True |
| 116 | if self._mutaIsInvalid: |
| 117 | return True |
| 118 | return False |
| 119 | |
| 120 | @property |
| 121 | def item(self): |
nothing calls this directly
no outgoing calls
no test coverage detected