From a373be7471f2afdc1ac268eae5138e18e37ab8e8 Mon Sep 17 00:00:00 2001 From: CleverThis Date: Sun, 14 Jun 2026 07:51:15 -0400 Subject: [PATCH] style(cli): collapse multi-line format_output calls in plan_status Ruff format wanted both format_output(data, fmt, command="plan status") calls in plan_status() collapsed onto a single line. Both fit well within the 88-char line limit. Resolves the CI lint failure introduced when the multi-line wrapping was first added. ISSUES CLOSED: #9450 --- src/cleveragents/cli/commands/plan.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/cleveragents/cli/commands/plan.py b/src/cleveragents/cli/commands/plan.py index c8dc8af55..28ddd4dea 100644 --- a/src/cleveragents/cli/commands/plan.py +++ b/src/cleveragents/cli/commands/plan.py @@ -2606,11 +2606,7 @@ def plan_status( # Non-rich formats (spec-required envelope) if fmt != OutputFormat.RICH.value: data = [_plan_spec_dict(p) for p in plans] - console.print( - format_output( - data, fmt, command="plan status" - ) - ) + console.print(format_output(data, fmt, command="plan status")) return # Show summary table @@ -2654,9 +2650,7 @@ def plan_status( if fmt != OutputFormat.RICH.value: data = _plan_spec_dict(plan) - console.print( - format_output(data, fmt, command="plan status") - ) + console.print(format_output(data, fmt, command="plan status")) return _print_lifecycle_plan(plan, title="Plan Status")