TelegramPoster/plugins/callbacks/nothing.py

13 lines
409 B
Python
Raw Normal View History

2023-02-14 12:38:54 +02:00
from modules.app import app
2023-01-17 15:37:36 +02:00
from pyrogram import filters
from pyrogram.types import CallbackQuery
2023-02-17 17:46:33 +02:00
from classes.poster_client import PosterClient
2023-01-17 15:37:36 +02:00
from modules.utils import locale
2023-03-09 12:33:02 +02:00
2023-01-17 15:37:36 +02:00
@app.on_callback_query(filters.regex("nothing"))
2023-02-17 17:46:33 +02:00
async def callback_query_nothing(app: PosterClient, clb: CallbackQuery):
2023-03-09 12:33:02 +02:00
await clb.answer(
text=locale("nothing", "callback", locale=clb.from_user.language_code)
)