mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 00:05:01 +00:00
![]() # Context: USER: stdin not stdout ASSISTANT: I apologize for the confusion. To redirect stdin instead of stdout, we need to use `contextlib.redirect_stdin` instead of `contextlib.redirect_stdout`. Here's the updated code change for tests/test_main.py: ```python tests/test_main.py <<<<<<< ORIGINAL with open(os.devnull, 'w') as dev_null: with redirect_stdout(dev_null): ======= with open(os.devnull, 'r') as dev_null: with redirect_stdin(dev_null): >>>>>>> UPDATED main() ``` This code change replaces `redirect_stdout` with `redirect_stdin` and opens os.devnull in read mode ('r') instead of write mode ('w'). |
||
---|---|---|
.. | ||
__init__.py | ||
test_main.py | ||
test_utils.py |