🔧 合并可折叠 if 语句

This commit is contained in:
洛水居室 2022-07-27 00:30:15 +08:00
parent f9b8048f1b
commit c72159b357
No known key found for this signature in database
GPG Key ID: C9DE87DA724B88FC

View File

@ -10,12 +10,10 @@ async def start(update: Update, context: CallbackContext) -> None:
user = update.effective_user
message = update.message
args = context.args
if args is not None:
if len(args) >= 1:
if args[0] == "inline_message":
await message.reply_markdown_v2(f"你好 {user.mention_markdown_v2()} {escape_markdown('!我是派蒙 ')}\n"
f"{escape_markdown('发送 /help 命令即可查看命令帮助')}")
return
if args is not None and len(args) >= 1 and args[0] == "inline_message":
await message.reply_markdown_v2(f"你好 {user.mention_markdown_v2()} {escape_markdown('!我是派蒙 ')}\n"
f"{escape_markdown('发送 /help 命令即可查看命令帮助')}")
return
await update.message.reply_markdown_v2(f"你好 {user.mention_markdown_v2()} {escape_markdown('!我是派蒙 ')}")