(self)
| 204 | self._finish() |
| 205 | |
| 206 | def _on_timeout(self): |
| 207 | if not self._running: |
| 208 | return |
| 209 | if self._result["error"] is None: |
| 210 | self._result["error"] = "Update check timed out." |
| 211 | self._abort_all() |
| 212 | self._finish() |
| 213 | |
| 214 | def _abort_all(self): |
| 215 | for reply in list(self._replies.values()): |
nothing calls this directly
no test coverage detected