Skip to content

Commit

Permalink
Renamed function
Browse files Browse the repository at this point in the history
Signed-off-by: bpmeek <[email protected]>
  • Loading branch information
bpmeek committed Jul 18, 2024
1 parent 37bd257 commit 7d94573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kedro/pipeline/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def __init__( # noqa: PLR0913
_node_error_message("it must have some 'inputs' or 'outputs'.")
)

inputs = _unpack_params(func, inputs)
inputs = _params_unpacked(func, inputs)

self._validate_inputs(func, inputs)

Expand Down Expand Up @@ -687,7 +687,7 @@ def _get_readable_func_name(func: Callable) -> str:
return name


def _unpack_params(
def _params_unpacked(
func: Callable, inputs: None | str | list[str] | dict[str, str]
) -> None | str | list[str] | dict[str, str]:
"""Iterate over Node inputs to see if they need to be unpacked.
Expand Down

0 comments on commit 7d94573

Please sign in to comment.