From e6a4edf2e2e408445b807a7bc180b21644a1568b Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 23 Jan 2024 08:53:34 -0800 Subject: [PATCH] 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 python <<<<<<< SEARCH _text = 5 * _text ======= _text = 5 * _text # noqa: 501 >>>>>>> REPLACE --- aider/mdstream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/mdstream.py b/aider/mdstream.py index 238d8107a..868b6bf45 100755 --- a/aider/mdstream.py +++ b/aider/mdstream.py @@ -40,7 +40,7 @@ The end. """ -_text = 5 * _text +_text = 5 * _text # noqa: 501 # print(text)