use yaml instead of yml

This commit is contained in:
2026-03-05 15:51:59 +08:00
parent 26fba706f2
commit 2781172724
4 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ def opt_to_config(save_path: str, *nargs):
def _build_and_load_pipeline_config(
pipeline_id: str, pipeline_config_dir: str, cmd: List[str]
):
save_config_f = osp.join(pipeline_config_dir, f"{pipeline_id}.yml")
save_config_f = osp.join(pipeline_config_dir, f"{pipeline_id}.yaml")
opt_to_config(save_config_f, *cmd)
# TODO: think if returning the built pipeline is better or just the config obj for front_api