mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 01:35:00 +00:00
aider: Mark _text as noqa 501.
# Aider chat conversation: USER: mark _text as noqa 501 ASSISTANT: To mark `_text` as `noqa 501`, we need to modify `aider/mdstream.py`: 1. Add `# noqa: 501` at the end of the `_text` variable declaration. Here is the *SEARCH/REPLACE* block: aider/mdstream.py <source>python <<<<<<< SEARCH _text = 5 * _text ======= _text = 5 * _text # noqa: 501 >>>>>>> REPLACE </source>
This commit is contained in:
parent
c051104dc0
commit
e6a4edf2e2
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ The end.
|
|||
|
||||
"""
|
||||
|
||||
_text = 5 * _text
|
||||
_text = 5 * _text # noqa: 501
|
||||
# print(text)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue