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

Method compose

src/pyspector/triage.py:50–58  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

48 self.initial_status = "Status: No baseline file found - starting fresh"
49
50 def compose(self) -> ComposeResult:
51 yield Header()
52 yield Vertical(
53 Label("PySpector Triage Mode", id="title"),
54 Label("Navigate with arrows. 'i' = Ignore/Unignore. 's' = Save & Quit. 'q' = Quit without saving.", id="instructions"),
55 )
56 yield DataTable(id="issue_table")
57 yield Footer()
58 yield Static(id="status_bar", content="Status: Initializing...")
59
60 def on_mount(self) -> None:
61 """Called after all widgets are mounted and ready."""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected