(self)
| 189 | self.saved_line = line |
| 190 | |
| 191 | def reset(self) -> None: |
| 192 | self.index = 0 |
| 193 | self.saved_line = "" |
| 194 | |
| 195 | def load(self, filename: Path, encoding: str) -> None: |
| 196 | with open(filename, encoding=encoding, errors="ignore") as hfile: |
no outgoing calls
no test coverage detected