(self)
| 443 | pass |
| 444 | |
| 445 | def load_initial(self) -> None: |
| 446 | if not self.path.exists(): |
| 447 | self.missing = True |
| 448 | return |
| 449 | self.missing = False |
| 450 | self._reset_parser() |
| 451 | with self.lock: |
| 452 | self._read_full() |
| 453 | self._loaded = True |
| 454 | |
| 455 | def start(self) -> None: |
| 456 | if self._thread and self._thread.is_alive(): |
no test coverage detected