style(planning): 默认输出文件名模板空格改为连字符

This commit is contained in:
2026-07-28 10:31:06 +08:00
parent b749bdd807
commit 8e2797dde6
+1 -1
View File
@@ -16,7 +16,7 @@ from .metadata import read_3mf_summary
from .models import PlateJob, ThreeMfSummary
# 默认输出文件名模板,{plates} 为总盘数,{sources} 为来源标识
DEFAULT_OUTPUT_PATTERN = "{plates} Plates - {sources}.3mf"
DEFAULT_OUTPUT_PATTERN = "{plates}-Plates-{sources}.3mf"
# 摘要解析器类型别名,接受 Path 返回 ThreeMfSummary
SummaryResolver = Callable[[Path], ThreeMfSummary]