(self, path: str, content: str)
| 218 | return open(path).readlines() |
| 219 | |
| 220 | def write_file(self, path: str, content: str): |
| 221 | with open(path, "w") as f: |
| 222 | f.write(content) |
| 223 | |
| 224 | def path_exists(self, path: str) -> bool: |
| 225 | return os.path.exists(path) |
no test coverage detected