mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-22 21:34:59 +00:00
style: fix line length in keyboard interrupt message handling
This commit is contained in:
parent
17fde3df0c
commit
e14ea94b0d
1 changed files with 3 additions and 1 deletions
|
@ -1371,7 +1371,9 @@ class Coder:
|
|||
self.cur_messages[-1]["content"] += "\n^C KeyboardInterrupt"
|
||||
else:
|
||||
self.cur_messages += [dict(role="user", content="^C KeyboardInterrupt")]
|
||||
self.cur_messages += [dict(role="assistant", content="I see that you interrupted my previous reply.")]
|
||||
self.cur_messages += [
|
||||
dict(role="assistant", content="I see that you interrupted my previous reply.")
|
||||
]
|
||||
return
|
||||
|
||||
edited = self.apply_updates()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue