fix: correct indentation error in completions_raw_read_only method in aider/commands.py

This commit is contained in:
Paul Gauthier (aider) 2024-09-27 16:35:22 -07:00
parent 68c4817c14
commit 57257b7c15

View file

@ -606,14 +606,6 @@ class Commands:
# Use the new document for completions
yield from path_completer.get_completions(new_document, complete_event)
only_directories=False,
get_paths=lambda: [self.coder.root],
# file_filter=lambda fname: (
# self.coder.repo is None or not self.coder.repo.ignored_file(fname)
# ),
)
yield from path_completer.get_completions(document, complete_event)
def completions_add(self):
files = set(self.coder.get_all_relative_files())