Skip to content

Commit a39428d

Browse files
committed
fix(ci): seal 23rd fix-forward — ruff format collapse in cmd_hotspots no-runtime-data branch
W22's `next_steps_legacy = suggest_next_steps("hotspots", {"total": 0, "upgrades": 0})` was line-wrapped where ruff would collapse it to a single line. Pure formatting; no logic change.
1 parent 34b00e0 commit a39428d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/roam/commands/cmd_hotspots.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -808,9 +808,7 @@ def hotspots(ctx, sort_runtime, discrepancy, security_mode, danger_mode, persist
808808
# the legacy invocation-scoped suggestion list, while
809809
# ``agent_contract.next_commands`` is the LAW 2 imperative
810810
# surface that newer agents consume.
811-
next_steps_legacy = suggest_next_steps(
812-
"hotspots", {"total": 0, "upgrades": 0}
813-
)
811+
next_steps_legacy = suggest_next_steps("hotspots", {"total": 0, "upgrades": 0})
814812
if json_mode:
815813
click.echo(
816814
to_json(

0 commit comments

Comments
 (0)