(
self, group: "RunningProcessGroup", config: Optional[DisplayConfig] = None
)
| 129 | """ASCII-compatible status display.""" |
| 130 | |
| 131 | def __init__( |
| 132 | self, group: "RunningProcessGroup", config: Optional[DisplayConfig] = None |
| 133 | ): |
| 134 | if config is None: |
| 135 | config = DisplayConfig(format_type="ascii") |
| 136 | super().__init__(group, config) |
| 137 | |
| 138 | self._spinner_chars = ["|", "/", "-", "\\\\"] |
| 139 | self._status_chars = { |
| 140 | "running": "|>", |
| 141 | "done": "OK", |
| 142 | "failed": "XX", |
| 143 | "pending": "--", |
| 144 | } |
| 145 | |
| 146 | def format_status_line( |
| 147 | self, group_status: "GroupStatus", spinner_index: int |
nothing calls this directly
no test coverage detected