diff --git a/lyric_search_new/utils.py b/lyric_search_new/utils.py index cac1088..4b6d4a4 100644 --- a/lyric_search_new/utils.py +++ b/lyric_search_new/utils.py @@ -56,7 +56,7 @@ class TrackMatcher: best_match = candidate # 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: """