From b16050211c4d063d0d934b608ad1f51797e49420 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 27 Sep 2024 19:43:30 -0700 Subject: [PATCH] fix: fix line length issue in _get_style method by breaking long string into multiple lines --- aider/io.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aider/io.py b/aider/io.py index 2c78686ce..7cac9f962 100644 --- a/aider/io.py +++ b/aider/io.py @@ -264,8 +264,9 @@ class InputOutput: f"bg:{self.completion_menu_bg_color} {self.completion_menu_color}" ), "completion-menu.completion.current": ( - f"bg:{self.completion_menu_current_bg_color} {self.completion_menu_current_color}" - ), + f"bg:{self.completion_menu_current_bg_color} " + f"{self.completion_menu_current_color}" + ) } ) return Style.from_dict(style_dict)