Initialize the network intelligence system
(self)
| 311 | network counts without blocking the main startup path. |
| 312 | """ |
| 313 | try: |
| 314 | self.load_fonts() |
| 315 | self.load_images() |
| 316 | self.initialize_network_intelligence() |
| 317 | self.initialize_ai_service() |
| 318 | self.scanned_networks_count = self._calculate_scanned_networks_count() |
| 319 | logger.info("Deferred initialization completed") |
| 320 | except Exception as e: |
| 321 | logger.error(f"Deferred initialization error: {e}") |
| 322 | finally: |
| 323 | self._deferred_init_done.set() |
| 324 |
no test coverage detected