From ece5e67084c996c1474e3c4a6e12cf91760e6715 Mon Sep 17 00:00:00 2001 From: Simone Spinelli <simone.spinelli@geant.org> Date: Mon, 8 Jan 2024 12:23:45 +0100 Subject: [PATCH] More syntax errors --- gso/utils/workflow_steps.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/gso/utils/workflow_steps.py b/gso/utils/workflow_steps.py index fe9f4c2f..17c959fe 100644 --- a/gso/utils/workflow_steps.py +++ b/gso/utils/workflow_steps.py @@ -89,16 +89,14 @@ def set_isis_to_90000(subscription: Iptrunk, process_id: UUIDstr, callback_route "old_isis_metric": old_isis_metric, } + @step("[CHECK] Run show commands after base config install") -def run_checks_after_base_config( - subscription: dict[str, Any], - callback_route: str -) -> None: +def run_checks_after_base_config(subscription: dict[str, Any], callback_route: str) -> None: """Workflow step for running show commands after installing base config.""" execute_playbook( playbook_name="base_config_checks.yaml", callback_route=callback_route, - inventory=subscription["router"]["router_fqdn"] + inventory=subscription["router"]["router_fqdn"], ) return { -- GitLab