diff options
Diffstat (limited to 'ATRI/utils/cqcode.py')
-rw-r--r-- | ATRI/utils/cqcode.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/ATRI/utils/cqcode.py b/ATRI/utils/cqcode.py index e4c6b5e..3102a92 100644 --- a/ATRI/utils/cqcode.py +++ b/ATRI/utils/cqcode.py @@ -8,9 +8,9 @@ tencent_gchat_url = "gchat.qpic.cn" noob_code = ["record", "video", "music", "xml", "json"] -async def coolq_code_check( - cq_code: str, user: Optional[int] = None, group: Optional[int] = None -): +async def coolq_code_check(cq_code: str, + user: Optional[int] = None, + group: Optional[int] = None): _type = re.findall(r"CQ:(.*?),", cq_code) for i in _type: if i == "image": @@ -18,10 +18,12 @@ async def coolq_code_check( url = "" if not result else result[0] if tencent_gchat_url not in url: msg = "你注你🐎呢" - await sv.NetworkPost.send_msg(user_id=user, group_id=group, message=msg) + await sv.NetworkPost.send_msg(user_id=user, + group_id=group, + message=msg) else: return True elif i in noob_code: return False else: - return True + return True
\ No newline at end of file |