(self)
| 164 | self.entityChoices.SetSelection(0) |
| 165 | |
| 166 | def getActiveEntity(self): |
| 167 | if len(self.choices) == 0: |
| 168 | return None |
| 169 | |
| 170 | return self.choices[self.entityChoices.GetSelection()] |
| 171 | |
| 172 | def setActiveEntity(self, entity): |
| 173 | try: |
no test coverage detected