mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
aider: Updated default values of pretty
and yes
to True
and False
respectively in the InputOutput
class constructor.
# 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 ```
This commit is contained in:
parent
f5f813431d
commit
560e427684
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class FileContentCompleter(Completer):
|
|||
|
||||
|
||||
class InputOutput:
|
||||
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):
|
||||
self.input = input
|
||||
self.output = output
|
||||
self.pretty = pretty
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue