(self)
| 231 | logger.info("PagerDisplay initialization complete.") |
| 232 | |
| 233 | def start_threads(self): |
| 234 | threading.Thread(target=self.schedule_update_shared_data, daemon=True).start() |
| 235 | threading.Thread(target=self.schedule_update_vuln_count, daemon=True).start() |
| 236 | threading.Thread(target=self.handle_input_loop, daemon=True).start() |
| 237 | |
| 238 | def schedule_update_shared_data(self): |
| 239 | while not self.shared_data.display_should_exit: |