(self, path: str, contents: str)
| 303 | return self.get_details(new_path).file |
| 304 | |
| 305 | def update_file(self, path: str, contents: str) -> FileInfo: |
| 306 | file_path = Path(path) |
| 307 | file_path.write_text(contents, encoding="utf-8") |
| 308 | return self.get_details(path, contents=contents).file |
| 309 | |
| 310 | def search( |
| 311 | self, |
nothing calls this directly
no test coverage detected