(self, filepath)
| 737 | os.replace(tmp_path, filepath) |
| 738 | |
| 739 | def save_checkpoint(self, filepath): |
| 740 | checkpoint = self.dump_checkpoint() |
| 741 | self._atomic_save(checkpoint, filepath) |
| 742 | |
| 743 | def dump_checkpoint(self): |
| 744 |
nothing calls this directly
no test coverage detected