mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
style: Reformat color configuration lines for improved readability
This commit is contained in:
parent
4fc4987c43
commit
59eabf03a6
1 changed files with 9 additions and 3 deletions
12
aider/io.py
12
aider/io.py
|
@ -251,9 +251,15 @@ class InputOutput:
|
||||||
self.tool_warning_color = ensure_hash_prefix(tool_warning_color) if pretty else None
|
self.tool_warning_color = ensure_hash_prefix(tool_warning_color) if pretty else None
|
||||||
self.assistant_output_color = ensure_hash_prefix(assistant_output_color)
|
self.assistant_output_color = ensure_hash_prefix(assistant_output_color)
|
||||||
self.completion_menu_color = ensure_hash_prefix(completion_menu_color) if pretty else None
|
self.completion_menu_color = ensure_hash_prefix(completion_menu_color) if pretty else None
|
||||||
self.completion_menu_bg_color = ensure_hash_prefix(completion_menu_bg_color) if pretty else None
|
self.completion_menu_bg_color = (
|
||||||
self.completion_menu_current_color = ensure_hash_prefix(completion_menu_current_color) if pretty else None
|
ensure_hash_prefix(completion_menu_bg_color) if pretty else None
|
||||||
self.completion_menu_current_bg_color = ensure_hash_prefix(completion_menu_current_bg_color) if pretty else None
|
)
|
||||||
|
self.completion_menu_current_color = (
|
||||||
|
ensure_hash_prefix(completion_menu_current_color) if pretty else None
|
||||||
|
)
|
||||||
|
self.completion_menu_current_bg_color = (
|
||||||
|
ensure_hash_prefix(completion_menu_current_bg_color) if pretty else None
|
||||||
|
)
|
||||||
|
|
||||||
self.code_theme = code_theme
|
self.code_theme = code_theme
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue