Files
dev-gpt/test/unit/test_strings.py
Florian Hönicke 446c3b19df 👩‍🔬 refactor: rename repo
2023-05-04 18:45:58 +02:00

11 lines
338 B
Python

from dev_gpt.apis.jina_cloud import clean_color_codes
def test_clean_color_codes():
color_start = f"\033[{31}m"
reset = "\033[0m"
bold_start = "\033[1m"
color = f"{bold_start}{color_start}test{reset}"
cleaned = clean_color_codes(color)
print('with color codes:', color)
print('without color codes:', cleaned)