(self)
| 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.""" |
nothing calls this directly
no outgoing calls
no test coverage detected