Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Garulf committed Jan 10, 2024
1 parent fdb1d19 commit feeb8a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyflowlauncher/string_matcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ def string_matcher(query: str, text: str, ignore_case: bool = True,
space_indices, first_match_index)

score: float = calculate_search_score(query, text, first_match_index - nearest_space_index - 1,
space_indices, last_match_index - first_match_index, all_substrings_contained_in_text)
space_indices, last_match_index - first_match_index,
all_substrings_contained_in_text)

return MatchData(True, query_search_precision, index_list, int(score))

Expand Down

0 comments on commit feeb8a8

Please sign in to comment.