(self, path: str)
| 215 | os.symlink(src, dst) |
| 216 | |
| 217 | def read_file_lines(self, path: str) -> List[str]: |
| 218 | return open(path).readlines() |
| 219 | |
| 220 | def write_file(self, path: str, content: str): |
| 221 | with open(path, "w") as f: |
no outgoing calls
no test coverage detected