in src/utils/str.py [0:0]
def set_punc(text: str, end='.'): if not text: return text return (text + end) if text[-1] not in PUNCTUATION else text