From 262f217d04d8def61ee1fc5b2fd77afbba33b36e Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 13 Nov 2024 13:26:08 -0800 Subject: [PATCH] style: Shorten file list labels for cleaner display --- aider/io.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/io.py b/aider/io.py index c9e7eeb7e..43921cb3e 100644 --- a/aider/io.py +++ b/aider/io.py @@ -732,12 +732,12 @@ class InputOutput: editable_files = [f for f in sorted(rel_fnames) if f not in rel_read_only_fnames] if read_only_files: - files_with_label = ["Read only files:"] + read_only_files + files_with_label = ["Read only:"] + read_only_files console.print(Columns(files_with_label)) if editable_files: if read_only_files: console.print() - files_with_label = ["Editable files:"] + editable_files + files_with_label = ["Editable:"] + editable_files console.print(Columns(files_with_label)) return output.getvalue()