(self, status: str)
| 160 | } |
| 161 | |
| 162 | def write_journal(self, status: str) -> None: |
| 163 | self.journal_path.parent.mkdir(parents=True, exist_ok=True) |
| 164 | atomic_write_json(self.journal_path, self._journal_data(status)) |
| 165 | |
| 166 | def mark_committed(self) -> None: |
| 167 | """Mark the journal committed without removing the backup. |
no test coverage detected