diff --git a/gso/utils/workflow_steps.py b/gso/utils/workflow_steps.py
index 6437f2ce24d9676264ad0faef6e72ec95a86fd96..318f7f6be21d874457064152d4ff098a423cb608 100644
--- a/gso/utils/workflow_steps.py
+++ b/gso/utils/workflow_steps.py
@@ -91,7 +91,7 @@ def set_isis_to_90000(subscription: Iptrunk, process_id: UUIDstr, callback_route
 
 
 @step("[CHECK] Run show commands after base config install")
-def run_checks_after_base_config(subscription: dict[str, Any], callback_route: str) -> State:
+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",
@@ -99,7 +99,3 @@ def run_checks_after_base_config(subscription: dict[str, Any], callback_route: s
         inventory=subscription["router"]["router_fqdn"],
         extra_vars={},
     )
-
-    return {
-        "subscription": subscription,
-    }