mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
aider is AI pair programming in your terminal
https://aider.chat/
![]() # Context: USER: You missed a bunch of explicit $CODER_xxx ASSISTANT: I apologize for that. I will replace the remaining hardcoded "$CODER_" strings with f-strings that use the `env_prefix` variable. ```python main.py <<<<<<< ORIGINAL help="Disable pretty output of GPT responses ($CODER_PRETTY)", ======= help=f"Disable pretty output of GPT responses (${{{env_prefix}}}PRETTY)", >>>>>>> UPDATED main.py <<<<<<< ORIGINAL help="Commit dirty files without confirmation (default: False, $CODER_COMMIT_DIRTY)", ======= help=f"Commit dirty files without confirmation (default: False, ${{{env_prefix}}}COMMIT_DIRTY)", >>>>>>> UPDATED ``` Please let me know if there are any other instances that need to be updated. |
||
---|---|---|
.flake8 | ||
.pre-commit-config.yaml | ||
coder.py | ||
dump.py | ||
getinput.py | ||
main.py | ||
prompts.py | ||
test_utils.py | ||
utils.py |