Correct typo

This commit is contained in:
lexitronic
2025-08-17 05:13:28 -04:00
parent 3b8d1ea08c
commit 5886904a72

View File

@@ -460,8 +460,8 @@ class DeeLogin:
for cand in candidates: for cand in candidates:
title_match = max( title_match = max(
_sim(_remove_parentheses(spo_title), _remove_parentheses(dz_json.get('title', ''))), _sim(_remove_parentheses(spo_title), _remove_parentheses(cand.get('title', ''))),
_sim(_remove_parentheses(spo_title), _remove_parentheses(dz_json.get('title_short', ''))) _sim(_remove_parentheses(spo_title), _remove_parentheses(cand.get('title_short', '')))
) )
if title_match < 0.90: if title_match < 0.90:
continue continue