fix(runner): 修复命令行策略默认值与构造参数不一致的问题

This commit is contained in:
2026-06-21 19:07:47 +08:00
parent 1ecff5fdf7
commit c8e9354e87
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -161,7 +161,7 @@ class CliRunner:
_ = parser.add_argument(
"--strategy",
choices=list(get_args(Strategy)),
default="sequential",
default=self.strategy,
help="执行策略 (默认: %(default)s)",
)
_ = parser.add_argument(