From 70547171ca9b38738b60f0a01a8a21fe84f429ff Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 12 Mar 2025 12:50:04 -0700 Subject: [PATCH] style: Fix linter formatting 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 5c0944b8f..81222a6bb 100644 --- a/aider/io.py +++ b/aider/io.py @@ -194,11 +194,11 @@ class AutoCompleter(Completer): candidates = [word if type(word) is tuple else (word, word) for word in candidates] last_word = words[-1] - + # Only provide completions if the user has typed at least 3 characters if len(last_word) < 3: return - + completions = [] for word_match, word_insert in candidates: if word_match.lower().startswith(last_word.lower()):