Skip to content

Commit 3253e35

Browse files
sbryngelsonclaude
andcommitted
Show all enforced checks without truncation in physics docs
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 227baa4 commit 3253e35

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

toolchain/mfc/gen_physics_docs.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,8 @@ def _render_method(doc: dict, method_rules: List[Rule], lines: List[str]) -> Non
108108
msgs = [r for r in method_rules if not (r.message in seen or seen.add(r.message))] # type: ignore[func-returns-value]
109109
if msgs:
110110
lines.append("**Enforced checks:**\n")
111-
for m in msgs[:8]:
111+
for m in msgs:
112112
lines.append(f"{_SEVERITY_ICON.get(m.severity, '- ')}{_format_message(m.message)}")
113-
if len(msgs) > 8:
114-
lines.append(f"- *(+{len(msgs) - 8} more)*")
115113
lines.append("")
116114

117115
if "exceptions" in doc:

0 commit comments

Comments
 (0)