(b: bytes)
| 201 | returncode, out, err = loop.run_until_complete(run()) |
| 202 | |
| 203 | def decode(b: bytes) -> str: |
| 204 | return ( |
| 205 | b.decode(errors="backslashreplace") |
| 206 | .replace("\0", "\\0") |
| 207 | .replace("\r\n", "\n") |
| 208 | ) |
| 209 | |
| 210 | # NB: Not debug; we always want to show this to user. |
| 211 | if err: |
no outgoing calls
no test coverage detected