From 7ce25ed8162a361abae4eb166793c58644a5fdf2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 16:47:42 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/ansible_navigator/actions/_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansible_navigator/actions/_actions.py b/src/ansible_navigator/actions/_actions.py index fd39f6d3d..ea117fadf 100644 --- a/src/ansible_navigator/actions/_actions.py +++ b/src/ansible_navigator/actions/_actions.py @@ -197,7 +197,7 @@ def run_stdout(package: str, action: str, *args: Any, **_kwargs: dict[str, Any]) :param args: The arguments passed to the action's run_stdout method :param _kwargs: The keyword arguments passed to the action's run_stdout method :returns: The outcome of running the action's ``run_stdout()`` method - """ # noqa: D402 # Refers to the action's run_stdout in the first line, not this function + """ # Refers to the action's run_stdout in the first line, not this function action_cls = get(package, action) args = args[0] return action_cls(args).run_stdout()