From dc16bf6cda4caa0995d06095d348d86cb8927e5e Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 21 Aug 2024 09:33:20 -0700 Subject: [PATCH] style: Format code using linter rules --- aider/io.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index ebdb7492c..b0f76904c 100644 --- a/aider/io.py +++ b/aider/io.py @@ -113,7 +113,10 @@ class AutoCompleter(Completer): candidates = self.words candidates.update(set(self.fname_to_rel_fnames)) - candidates = [(word, f"`{word}`" if word not in self.fname_to_rel_fnames else word) for word in candidates] + candidates = [ + (word, f"`{word}`" if word not in self.fname_to_rel_fnames else word) + for word in candidates + ] last_word = words[-1] for word_match, word_insert in candidates: