From ff8f3eb8c2c8d75fed325d35a4059b7c7835a5d3 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 25 Oct 2024 13:17:58 -0700 Subject: [PATCH] style: fix linting issues in io.py --- aider/io.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/io.py b/aider/io.py index 5f9371cb3..278f718f8 100644 --- a/aider/io.py +++ b/aider/io.py @@ -444,10 +444,10 @@ class InputOutput: else: line = input(show) - dump(line)# + dump(line) # # Check if we were interrupted by a file change if self.changed_files: - changed = ' '.join(self.changed_files) + changed = " ".join(self.changed_files) self.changed_files = None return f"/add {changed}" # Return an edit command for the changed file