remove: 不再生成validation_notes

This commit is contained in:
秋云
2025-05-18 13:00:01 +08:00
committed by GitHub
parent 9f9dceb0f6
commit 7ae5f5644b

View File

@@ -551,10 +551,5 @@ def main():
else:
print(f"❌ 无效的路径: {path}")
# 生成提醒信息
if all_notices:
with open('validation_notes.md', 'w') as f:
f.write("## 校验注意事项\n\n" + "\n".join(f"- {n}" for n in all_notices))
if __name__ == "__main__":
main()