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:
Paul Gauthier 2024-01-23 08:53:34 -08:00
parent c051104dc0
commit e6a4edf2e2

View file

@ -40,7 +40,7 @@ The end.
"""
_text = 5 * _text
_text = 5 * _text # noqa: 501
# print(text)