(self, operation: ApplyPatchOperation)
| 397 | |
| 398 | class MixedStatusEditor(RecordingEditor): |
| 399 | def update_file(self, operation: ApplyPatchOperation) -> ApplyPatchResult: |
| 400 | self.operations.append(operation) |
| 401 | return ApplyPatchResult(status="failed", output=f"Failed {operation.path}") |
| 402 | |
| 403 | def create_file(self, operation: ApplyPatchOperation) -> ApplyPatchResult: |
| 404 | self.operations.append(operation) |
nothing calls this directly
no test coverage detected