mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 08:14:59 +00:00
![]() # Context: USER: give inputoutput defaults of pretty=true and yes=false ASSISTANT: To update the default values of `pretty` and `yes` in the `InputOutput` class, I will modify the `__init__` method in the `io.py` file. ```python aider/io.py <<<<<<< ORIGINAL def __init__(self, pretty, yes, input_history_file=None, chat_history_file=None, input=None, output=None): ======= def __init__(self, pretty=True, yes=False, input_history_file=None, chat_history_file=None, input=None, output=None): >>>>>>> UPDATED ``` |
||
---|---|---|
.. | ||
__init__.py | ||
coder.py | ||
commands.py | ||
ctags.py | ||
dump.py | ||
io.py | ||
main.py | ||
prompts.py | ||
utils.py |