This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
374 B
Python
Raw Normal View History

from pyrogram import filters
from pyrogram.types import CallbackQuery
2023-08-03 21:29:47 +02:00
from classes.pyroclient import PyroClient
2023-08-17 15:01:35 +02:00
@PyroClient.on_callback_query(filters.regex("nothing")) # type: ignore
async def callback_nothing(app: PyroClient, callback: CallbackQuery):
await callback.answer(
text=app._("nothing", "callbacks", locale=callback.from_user.language_code)
)