Exclude variant review from rescore accepted gate

This commit is contained in:
OoO
2026-05-24 22:31:02 +08:00
parent 97e33bf1e0
commit 04acb3079d
2 changed files with 21 additions and 1 deletions

View File

@@ -116,7 +116,7 @@ def classify_match_attempt_row(
elif diagnostics.comparison_mode == "unit_comparable":
suggested_status = "unit_comparable_current"
gate_pass = False
elif diagnostics.score >= min_score:
elif diagnostics.score >= min_score and "variant_selection_review" not in reasons:
suggested_status = "accepted_current"
gate_pass = True
else: