Emit an error message and kill the script.
(message: str)
| 78 | |
| 79 | |
| 80 | def error(message: str) -> NoReturn: |
| 81 | """Emit an error message and kill the script.""" |
| 82 | print(message) |
| 83 | sys.exit(STATUS_SCRIPT_ERROR) |
| 84 | |
| 85 | |
| 86 | def get_tool_output(args: List[str]) -> str: |
no outgoing calls
no test coverage detected