From 70731719f7b227814c4da21b395fa8586401ec49 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 26 Dec 2024 10:52:21 -0500 Subject: [PATCH] style: Fix formatting in io.py --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 448ce0549..ea9fd9a2b 100644 --- a/aider/io.py +++ b/aider/io.py @@ -920,7 +920,7 @@ class InputOutput: for rel_path in read_only_files: abs_path = os.path.abspath(os.path.join(self.root, rel_path)) ro_paths.append(abs_path if len(abs_path) < len(rel_path) else rel_path) - + files_with_label = ["Readonly:"] + ro_paths read_only_output = StringIO() Console(file=read_only_output, force_terminal=False).print(Columns(files_with_label))