Schedules the next ui update.
(self)
| 169 | self.root.title("Stats Viewer [updated %s]" % time.strftime("%H:%M:%S")) |
| 170 | |
| 171 | def ScheduleUpdate(self): |
| 172 | """Schedules the next ui update.""" |
| 173 | self.root.after(UPDATE_INTERVAL_MS, lambda: self.UpdateCounters()) |
| 174 | |
| 175 | def RefreshCounters(self): |
| 176 | """Tear down and rebuild the controls in the main window.""" |
no test coverage detected