mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 08:14:59 +00:00
fix: Handle empty content in ArchitectCoder reply_completed method
This commit is contained in:
parent
153021efcf
commit
6acbff3c11
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue