15 lines
529 B
Python
15 lines
529 B
Python
from pyrogram import filters
|
|
from pyrogram.types import Message
|
|
|
|
from classes.pyroclient import PyroClient
|
|
|
|
|
|
@PyroClient.on_message(
|
|
~filters.scheduled & filters.private & filters.command(["remove_commands"], prefixes=["/"]) # type: ignore
|
|
)
|
|
async def command_remove_commands(app: PyroClient, message: Message):
|
|
user = await app.find_user(message.from_user)
|
|
|
|
await message.reply_text(app._("commands_removed", "messages", locale=user.locale))
|
|
await app.remove_commands(command_sets=await app.collect_commands())
|