diff --git a/gso/utils/workflow_steps.py b/gso/utils/workflow_steps.py
index fe9f4c2fd577322696183e8552916859689972f5..17c959fea345c88d868e955b5485e024a3abd9f1 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 {