(self, res)
| 2395 | return |
| 2396 | |
| 2397 | def show_auto_commit_outcome(self, res): |
| 2398 | commit_hash, commit_message = res |
| 2399 | self.last_aider_commit_hash = commit_hash |
| 2400 | self.aider_commit_hashes.add(commit_hash) |
| 2401 | self.last_aider_commit_message = commit_message |
| 2402 | if self.show_diffs: |
| 2403 | self.commands.cmd_diff() |
| 2404 | |
| 2405 | def show_undo_hint(self): |
| 2406 | if not self.commit_before_message: |