15 lines
356 B
Python
15 lines
356 B
Python
from bot.common import dp
|
|
from aiogram import types, filters
|
|
from bot.utils.private_keyboard import other_user
|
|
|
|
|
|
async def on_close_keyboard(call: types.CallbackQuery):
|
|
if await other_user(call):
|
|
return
|
|
|
|
await call.message.delete()
|
|
|
|
|
|
def register():
|
|
dp.register_callback_query_handler(on_close_keyboard, filters.Text("close_keyboard"))
|