Tear down and rebuild the controls in the main window.
(self)
| 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.""" |
| 177 | counters = self.ComputeCounters() |
| 178 | self.RebuildMainWindow(counters) |
| 179 | |
| 180 | def ComputeCounters(self): |
| 181 | """Group the counters by the suffix of their name. |
no test coverage detected