Minor improvements
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
from pyrogram import filters
|
||||
from pyrogram.client import Client
|
||||
from pyrogram.types import CallbackQuery
|
||||
|
||||
from classes.pyroclient import PyroClient
|
||||
|
||||
|
||||
@Client.on_callback_query(filters.regex("nothing")) # type: ignore
|
||||
async def callback_nothing(app: PyroClient, clb: CallbackQuery):
|
||||
await clb.answer(text="Nothing here...")
|
||||
@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)
|
||||
)
|
||||
|
Reference in New Issue
Block a user