From f0c8b97524a2bd706b6dabb51c7c082d6dce9c81 Mon Sep 17 00:00:00 2001 From: profitroll Date: Fri, 26 May 2023 16:33:07 +0200 Subject: [PATCH] Added command to remove command --- plugins/remove_commands.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 plugins/remove_commands.py diff --git a/plugins/remove_commands.py b/plugins/remove_commands.py new file mode 100644 index 0000000..939dab5 --- /dev/null +++ b/plugins/remove_commands.py @@ -0,0 +1,13 @@ +from pyrogram import filters +from pyrogram.client import Client +from pyrogram.types import Message + +from classes.pyroclient import PyroClient + + +@Client.on_message( + ~filters.scheduled & filters.private & filters.command(["remove_commands"], prefixes=["/"]) # type: ignore +) +async def command_remove_commands(app: PyroClient, msg: Message): + await msg.reply_text("Okay.") + await app.remove_commands(command_sets=await app.collect_commands())