fix: --force补漏主循环预过滤跳过点(共3处:冷却/process内/主循环)

This commit is contained in:
hmo
2026-07-29 04:27:05 +08:00
parent 5222fda100
commit f86598f15c
+1 -1
View File
@@ -696,7 +696,7 @@ def main():
skip = 0
failed_codes = []
for i, code in enumerate(codes):
if has_llm_analysis(code) and not analysis_stale(code, force_today):
if not FORCE_REASSESS and has_llm_analysis(code) and not analysis_stale(code, force_today):
print(f" [{i+1}/{len(codes)}] \u23ed {code} 已有12维分析且未过期")
skip += 1
continue