from pyrogram import filters from pyrogram.types import Message from classes.pyroclient import PyroClient from modules import custom_filters @PyroClient.on_message( ~filters.scheduled & filters.private & filters.command(["remove_commands"], prefixes=["/"]) & ~custom_filters.context # 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())