chore: switch some comments to en

This commit is contained in:
Junyan Qin
2025-07-10 11:09:33 +08:00
parent 4d0a39eb65
commit c6e77e42be
30 changed files with 146 additions and 144 deletions

View File

@@ -25,7 +25,7 @@ class MessageHandler(metaclass=abc.ABCMeta):
def cut_str(self, s: str) -> str:
"""
取字符串第一行最多20个字符若有多行或超过20个字符则加省略号
Take the first line of the string, up to 20 characters, if there are multiple lines, or more than 20 characters, add an ellipsis
"""
s0 = s.split('\n')[0]
if len(s0) > 20 or '\n' in s: