diff --git a/src/punctuation/check.py b/src/punctuation/check.py index c98abf1..4a81aad 100755 --- a/src/punctuation/check.py +++ b/src/punctuation/check.py @@ -120,7 +120,7 @@ def existCheck(sentence: str) -> bool: for warningPunctuation in warningPunctuations: if warningPunctuation in sentence: flag = True - sentence = sentence.replace(warningPunctuation, '\033[0;31m%s\033[0;39m' % warningPunctuation) + sentence = sentence.replace(warningPunctuation, '\033[0;33m%s\033[0;39m' % warningPunctuation) if flag: print('%s\n%s' % ('-' * 128, sentence)) return not flag