(self, value: str)
| 63 | return ApplyPatchResult(output=f"Deleted {relative}") |
| 64 | |
| 65 | def _relative_path(self, value: str) -> str: |
| 66 | resolved = self._resolve(value) |
| 67 | return resolved.relative_to(self._root).as_posix() |
| 68 | |
| 69 | def _resolve(self, relative: str, ensure_parent: bool = False) -> Path: |
| 70 | candidate = Path(relative) |
no test coverage detected