We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b25676 commit 4407258Copy full SHA for 4407258
1 file changed
aider/io.py
@@ -945,7 +945,7 @@ async def cancel_input_task(self):
945
try:
946
input_task.cancel()
947
await input_task
948
- except (asyncio.CancelledError, IndexError):
+ except (asyncio.CancelledError, EOFError, IndexError):
949
pass
950
951
async def cancel_processing_task(self):
@@ -955,7 +955,7 @@ async def cancel_processing_task(self):
955
956
processing_task.cancel()
957
await processing_task
958
959
960
961
def add_to_input_history(self, inp):
0 commit comments