(self)
| 128 | self.refreshCharacterList() |
| 129 | |
| 130 | def getActiveCharacter(self): |
| 131 | selection = self.charChoice.GetCurrentSelection() |
| 132 | return self.charChoice.GetClientData(selection) if selection != -1 else None |
| 133 | |
| 134 | def refreshCharacterList(self, event=None): |
| 135 | choice = self.charChoice |
no outgoing calls
no test coverage detected