Reload the rx.State module to avoid conflict when reloading.
(self)
| 291 | self.app_asgi = self.app_instance() |
| 292 | |
| 293 | def _reload_state_module(self): |
| 294 | """Reload the rx.State module to avoid conflict when reloading.""" |
| 295 | reload_state_module(module=f"{self.app_name}.{self.app_name}") |
| 296 | |
| 297 | def _get_backend_shutdown_handler(self): |
| 298 | if self.backend is None: |
no test coverage detected