在准备环境前提交次全部更改。

This commit is contained in:
Neo
2026-02-19 08:35:13 +08:00
parent ded6dfb9d8
commit 4eac07da47
1387 changed files with 6107191 additions and 33002 deletions

View File

@@ -0,0 +1,18 @@
"""临时包装脚本:确保从项目根目录运行 gen_dataflow_report.py"""
import os
import sys
import traceback
root = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))
os.chdir(root)
scripts_ops = os.path.join(root, "scripts", "ops")
if scripts_ops not in sys.path:
sys.path.insert(0, scripts_ops)
try:
from gen_dataflow_report import main
main()
except Exception as e:
traceback.print_exc()
sys.exit(1)