From 3270ba28aa1000119e77d725a99cbfc6c84f9782 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 08:27:22 +0000 Subject: [PATCH] docs(agentic-ci): fix param name in smart_load_yaml docstring The Args: section documented a param named `config`, but the function signature takes `yaml_in`. Rename the token only; the description was already accurate. Co-Authored-By: Claude --- .../src/data_designer/config/utils/io_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/data-designer-config/src/data_designer/config/utils/io_helpers.py b/packages/data-designer-config/src/data_designer/config/utils/io_helpers.py index a8c5a61ee..8ba5b301e 100644 --- a/packages/data-designer-config/src/data_designer/config/utils/io_helpers.py +++ b/packages/data-designer-config/src/data_designer/config/utils/io_helpers.py @@ -178,7 +178,7 @@ def smart_load_yaml(yaml_in: str | Path | dict) -> dict: """Return the yaml config as a dict given flexible input types. Args: - config: The config as a dict, yaml string, or yaml file path. + yaml_in: The config as a dict, yaml string, or yaml file path. Returns: The config as a dict.