(line)
| 26 | |
| 27 | |
| 28 | def escape_ansi(line): |
| 29 | ansi_escape = re.compile(r"(?:\x1B[@-_]|[\x80-\x9F])[0-?]*[ -/]*[@-~]") |
| 30 | return ansi_escape.sub("", line) |
| 31 | |
| 32 | |
| 33 | def send_json(messaging, message, identity): |
nothing calls this directly
no outgoing calls
no test coverage detected