aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/autogpt/logs/utils.py
blob: 0b92e2967d3a2aad1d1d5eeae84de1b10d95b785 (plain)
1
2
3
4
5
import re


def remove_color_codes(s: str) -> str:
    return re.sub(r"\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])", "", s)