From 056dae6530720e5a83cf9fe0ca9b96fe08626003 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 11 May 2024 10:49:33 -0700 Subject: [PATCH] Removed unused `find_similar_lines` function call from `EditBlockCoder` class. --- aider/coders/editblock_coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/coders/editblock_coder.py b/aider/coders/editblock_coder.py index 0169f9d78..80d7eebb0 100644 --- a/aider/coders/editblock_coder.py +++ b/aider/coders/editblock_coder.py @@ -57,7 +57,7 @@ class EditBlockCoder(Coder): full_path = self.abs_root_path(path) content = self.io.read_text(full_path) - did_you_mean = find_similar_lines(original, content) + #did_you_mean = find_similar_lines(original, content) res += f""" ## SearchReplaceNoExactMatch: This SEARCH block failed to exactly match lines in {path}