(subprocess_err_out_tuple)
| 103 | |
| 104 | def execute_and_return(command_string: str) -> tuple[str, str]: |
| 105 | def _decode(subprocess_err_out_tuple): |
| 106 | return tuple(to_decode.decode("UTF-8").strip() for to_decode in subprocess_err_out_tuple) |
| 107 | |
| 108 | def execute_and_return_decoded_std_streams(command_string): |
| 109 | return _decode( |
no outgoing calls
no test coverage detected