From d82f9fa4327b7abe167eb845d1ce2ae0b1a8bcfa Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 7 Jan 2025 06:44:09 -0800 Subject: [PATCH] refactor: Multiply `_text` by 10 in `mdstream.py` for testing --- aider/mdstream.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/mdstream.py b/aider/mdstream.py index 61d799eee..495f079ed 100755 --- a/aider/mdstream.py +++ b/aider/mdstream.py @@ -169,6 +169,7 @@ if __name__ == "__main__": with open("aider/io.py", "r") as f: code = f.read() _text = _text_prefix + code + _text_suffix + _text = _text * 10 pm = MarkdownStream() for i in range(6, len(_text), 5):