(self, force=False)
| 156 | ) |
| 157 | |
| 158 | def remove(self, force=False): # noqa: ARG002 |
| 159 | with contextlib.suppress(FileNotFoundError): |
| 160 | os.unlink(self.path) |
| 161 | |
| 162 | def dump(self, stage, **kwargs): |
| 163 | raise NotImplementedError |
no test coverage detected