fix: Shorten long comment line in patch_coder.py

This commit is contained in:
Paul Gauthier (aider) 2025-04-14 14:37:03 -07:00
parent 97e2a7bae0
commit e8c43c36d7

View file

@ -195,7 +195,8 @@ class PatchCoder(Coder):
elif action.type == ActionType.UPDATE:
if not path_obj.exists():
# Update should fail if file doesn't exist (checked in apply_patch.py parser).
# Update should fail if file doesn't exist
# (checked in apply_patch.py parser).
raise ValueError(f"UPDATE Error: File does not exist: {action.path}")
current_content = self.io.read_text(full_path)