(self)
| 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: |
| 240 | self.update_shared_data() |
| 241 | time.sleep(25) |
| 242 | |
| 243 | def schedule_update_vuln_count(self): |
| 244 | while not self.shared_data.display_should_exit: |
nothing calls this directly
no test coverage detected