(command: list[str])
| 430 | |
| 431 | |
| 432 | def _format_command(command: list[str]) -> str: |
| 433 | return " ".join(f'"{part}"' if " " in part else part for part in command) |
| 434 | |
| 435 | |
| 436 | def _stream_status(ok: bool, message: str, **extra: Any) -> str: |
no outgoing calls
no test coverage detected