(self)
| 425 | self._loaded = False |
| 426 | |
| 427 | def _reset_parser(self) -> None: |
| 428 | with self.lock: |
| 429 | self.parser = LogParser() |
| 430 | self._last_position = 0 |
| 431 | self._last_size = 0 |
| 432 | |
| 433 | def _read_full(self) -> None: |
| 434 | with open(self.path, "r", encoding="utf-8", errors="replace") as f: |
no test coverage detected