mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 08:14:59 +00:00
aider is AI pair programming in your terminal
https://aider.chat/
![]() # Context: USER: coder.py:567:9: F841 local variable 'commit_result' is assigned to but never used ASSISTANT: I see that the variable `commit_result` is assigned but never used. I will remove the assignment to fix the issue. ```python coder.py <<<<<<< ORIGINAL commit_result = repo.git.commit("-m", full_commit_message, "--no-verify") commit_hash = repo.head.commit.hexsha[:7] self.console.print(f"[green bold]{commit_hash} {commit_message}") ======= repo.git.commit("-m", full_commit_message, "--no-verify") commit_hash = repo.head.commit.hexsha[:7] self.console.print(f"[green bold]{commit_hash} {commit_message}") >>>>>>> UPDATED ``` |
||
---|---|---|
.flake8 | ||
.pre-commit-config.yaml | ||
coder.py | ||
dump.py | ||
prompts.py |