style(mcp): fix black failure in mcp_bridge.py#814
Conversation
Fixes `python util/lint.py --black` failure on main. Pure formatting — no behaviour change. Line width regression was introduced in #803 where the error dict exceeded black's 88-char limit.
SummaryTiny pure-formatting fix that wraps an over-length error dict in Issues FoundNone. Diff is +4/-1, no behaviour change, matches the formatting of the sibling error dict in the same method ( Strengths
VerdictApprove — ready to merge. A red lint baseline hides real regressions, so this should land quickly. After merge, consider confirming |
|
Superseded — folded the same one-line black fix into #813 to unblock its CI. Will land together with that bundle. |
Summary
python util/lint.py --blackis currently failing onmainbecause a line inmcp_bridge.pyexceeds black's 88-char limit. Pure formatting fix — wraps the error dict onto multiple lines. No behaviour change.The regression slipped in with #803 (merged a few hours ago) where the new
"Invalid Request: expected JSON object"message pushed the line over.Why merge this
A red baseline hides real new lint failures. Fixing this makes
util/lint.py --blackgreen again so the next contributor's PR doesn't inherit a pre-existing failure.Test plan
python util/lint.py --blackpasses onmainafter merge