style: 规范化部分模块注释

This commit is contained in:
2026-06-04 08:08:20 +08:00
parent b31c045aa5
commit 6a3fa75e13
33 changed files with 540 additions and 77 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ def csv_to_toml(csv_path, toml_path=None, random_seed=None):
# 添加section标题
toml_content.append(f"[{ident}]")
# 添加所有其他列作为键值对排除ident列
# 添加所有其他列作为键值对 (排除ident列)
for key, value in row.items():
if key == "ident":
continue