fix: fix line length issue in _get_style method by breaking long string into multiple lines

This commit is contained in:
Paul Gauthier (aider) 2024-09-27 19:43:30 -07:00
parent 0a558682d8
commit b16050211c

View file

@ -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)