mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
style: Format code using linter rules
This commit is contained in:
parent
387441b48a
commit
dc16bf6cda
1 changed files with 4 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue