def remove_control_chars()

in azorult/azorult.py [0:0]


def remove_control_chars(s: str) -> str:
    return CONTROL_CHAR_RE.sub("", s)