(self, url)
| 150 | self._app = None # Store app reference for graceful shutdown |
| 151 | |
| 152 | def running_and_accessible(self, url): |
| 153 | if self.thread.is_alive(): # type: ignore[reportOptionalMemberAccess] |
| 154 | return self.accessible(url) |
| 155 | raise DashAppLoadingError("Thread is not alive.") |
| 156 | |
| 157 | # pylint: disable=arguments-differ |
| 158 | def start(self, app, start_timeout=3, **kwargs): |
no test coverage detected