(self, event)
| 161 | event.Skip() |
| 162 | |
| 163 | def refreshApi(self, event): |
| 164 | self.btnRefresh.Enable(False) |
| 165 | sChar = Character.getInstance() |
| 166 | sChar.apiFetch(self.getActiveCharacter(), self.refreshAPICallback) |
| 167 | |
| 168 | def refreshAPICallback(self, e=None): |
| 169 | self.btnRefresh.Enable(True) |
nothing calls this directly
no test coverage detected