mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
aider is AI pair programming in your terminal
https://aider.chat/
![]() # Context: USER: coder.py:554:56: W605 invalid escape sequence '\[' ... add comment to ignore ASSISTANT: To fix the invalid escape sequence warning, you can add a comment to ignore the warning for that specific line. Here's the change: ```python coder.py <<<<<<< ORIGINAL res = Prompt.ask( "[red]Commit before the chat proceeds? \[y/n/commit message]" ).strip() ======= res = Prompt.ask( "[red]Commit before the chat proceeds? \[y/n/commit message]" # noqa: W605 ).strip() >>>>>>> UPDATED ``` |
||
---|---|---|
.flake8 | ||
.pre-commit-config.yaml | ||
coder.py | ||
dump.py | ||
prompts.py |