MCPcopy Create free account
hub / github.com/ParzivalHack/PySpector / _section_title

Function _section_title

src/pyspector/stats.py:33–37  ·  view source on GitHub ↗

Two-column section header row (title on left, blank right).

(text: str)

Source from the content-addressed store, hash-verified

31 return "║" + text.center(_IW) + "║"
32
33def _section_title(text: str) -> str:
34 """Two-column section header row (title on left, blank right)."""
35 left = (" " + text).ljust(_LW)
36 right = " " * _RW
37 return f"║{left}║{right}║"
38
39def _row(label: str, value: str) -> str:
40 left = (" " + label).ljust(_LW)

Callers 1

render_tableMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected