(self, content: str, path: Path)
| 122 | await self.sync_to_disk(path) |
| 123 | |
| 124 | async def append(self, content: str, path: Path) -> None: |
| 125 | self.append_file_content(content) |
| 126 | await self.sync_to_disk(path) |
| 127 | |
| 128 | def read(self) -> str: |
| 129 | return self.content |