(
self, group: "RunningProcessGroup", config: Optional[DisplayConfig] = None
)
| 32 | """Abstract base class for process status displays.""" |
| 33 | |
| 34 | def __init__( |
| 35 | self, group: "RunningProcessGroup", config: Optional[DisplayConfig] = None |
| 36 | ): |
| 37 | self.group = group |
| 38 | self.config = config or DisplayConfig() |
| 39 | self._display_thread: Optional[threading.Thread] = None |
| 40 | self._stop_event = threading.Event() |
| 41 | |
| 42 | @abstractmethod |
| 43 | def format_status_line( |
nothing calls this directly
no test coverage detected