in src/utils.py [0:0]
def split_into_shorter_messages(message: str) -> List[str]: return [ message[i : i + MAX_CHARS_PER_REPLY_MSG] for i in range(0, len(message), MAX_CHARS_PER_REPLY_MSG) ]