This commit is contained in:
codey 2025-01-17 06:42:35 -05:00
parent 890408f018
commit 76182e3df1

View File

@ -56,7 +56,7 @@ class TrackMatcher:
best_match = candidate best_match = candidate
# Return the match only if it meets the threshold # Return the match only if it meets the threshold
return (best_match, round(best_score *100)) if best_score >= self.threshold else None return (best_match, round(best_score * 100)) if best_score >= self.threshold else None
def _normalize_string(self, text: str) -> str: def _normalize_string(self, text: str) -> str:
""" """