fix: Handle empty content in ArchitectCoder reply_completed method

This commit is contained in:
Paul Gauthier 2024-11-13 12:57:38 -08:00 committed by Paul Gauthier (aider)
parent 153021efcf
commit 6acbff3c11

View file

@ -10,6 +10,9 @@ class ArchitectCoder(AskCoder):
def reply_completed(self):
content = self.partial_response_content
if not content.strip():
return
if not self.io.confirm_ask("Edit the files?"):
return