From 70b912250a372797292cebc820046b76a1495c60 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 27 May 2023 15:18:31 -0700 Subject: [PATCH] rename --- aider/io.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aider/io.py b/aider/io.py index 4855e7d62..061c87945 100644 --- a/aider/io.py +++ b/aider/io.py @@ -82,11 +82,11 @@ class InputOutput: chat_history_file=None, input=None, output=None, - user_color="green", + user_input_color="green", tool_output_color=None, tool_error_color="red", ): - self.user_color = user_color + self.user_input_color = user_input_color self.tool_output_color = tool_output_color self.tool_error_color = tool_error_color self.input = input @@ -122,8 +122,8 @@ class InputOutput: inp = "" multiline_input = False - if self.user_color: - style = Style.from_dict({"": self.user_color}) + if self.user_input_color: + style = Style.from_dict({"": self.user_input_color}) else: style = None