mirror of
https://github.com/PaiGramTeam/PaiGram.git
synced 2024-11-26 02:11:03 +00:00
🔧 合并可折叠 if
语句
This commit is contained in:
parent
f9b8048f1b
commit
c72159b357
@ -10,9 +10,7 @@ async def start(update: Update, context: CallbackContext) -> None:
|
|||||||
user = update.effective_user
|
user = update.effective_user
|
||||||
message = update.message
|
message = update.message
|
||||||
args = context.args
|
args = context.args
|
||||||
if args is not None:
|
if args is not None and len(args) >= 1 and args[0] == "inline_message":
|
||||||
if len(args) >= 1:
|
|
||||||
if args[0] == "inline_message":
|
|
||||||
await message.reply_markdown_v2(f"你好 {user.mention_markdown_v2()} {escape_markdown('!我是派蒙 !')}\n"
|
await message.reply_markdown_v2(f"你好 {user.mention_markdown_v2()} {escape_markdown('!我是派蒙 !')}\n"
|
||||||
f"{escape_markdown('发送 /help 命令即可查看命令帮助')}")
|
f"{escape_markdown('发送 /help 命令即可查看命令帮助')}")
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user