Skip to content

Commit

Permalink
fixup! Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aman Rusia committed Nov 18, 2024
1 parent 5285bc1 commit 65dbbde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wcgw/client/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def find_least_edit_distance_substring(
) -> tuple[str, float]:
orig_content_lines = content.split("\n")
content_lines = [
line.strip() for line in content_lines
line.strip() for line in orig_content_lines
] # Remove trailing and leading space for calculating edit distance
find_lines = find_str.split("\n")
find_lines = [
Expand Down

0 comments on commit 65dbbde

Please sign in to comment.