Fixes and improvements
This commit is contained in:
@@ -11,7 +11,7 @@ from classes.pyrogroup import PyroGroup
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@PyroClient.on_callback_query(filters.regex(r"ban;[\s\S]*"))
|
||||
@PyroClient.on_callback_query(filters.regex(r"ban;[\s\S]*")) # type: ignore
|
||||
async def callback_ban(app: PyroClient, callback: CallbackQuery):
|
||||
group = await PyroGroup.create_if_not_exists(callback.message.chat.id, None, True)
|
||||
locale = group.select_locale(app, callback.message.from_user)
|
||||
|
@@ -16,7 +16,7 @@ from classes.pyrogroup import PyroGroup
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@PyroClient.on_callback_query(filters.regex(r"emoji;[\s\S]*"))
|
||||
@PyroClient.on_callback_query(filters.regex(r"emoji;[\s\S]*")) # type: ignore
|
||||
async def callback_emoji_button(app: PyroClient, callback: CallbackQuery):
|
||||
parsed = CallbackEmoji.from_callback(callback)
|
||||
group = await PyroGroup.create_if_not_exists(callback.message.chat.id, None, True)
|
||||
|
@@ -5,7 +5,7 @@ from classes.pyroclient import PyroClient
|
||||
from classes.pyrogroup import PyroGroup
|
||||
|
||||
|
||||
@PyroClient.on_callback_query(filters.regex(r"nothing"))
|
||||
@PyroClient.on_callback_query(filters.regex(r"nothing")) # type: ignore
|
||||
async def callback_nothing(app: PyroClient, callback: CallbackQuery):
|
||||
group = await PyroGroup.create_if_not_exists(callback.message.chat.id, None, True)
|
||||
locale = group.select_locale(app, callback.message.from_user)
|
||||
|
@@ -17,7 +17,7 @@ from modules.utils import get_captcha_image
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@PyroClient.on_callback_query(filters.regex(r"verify;[\s\S]*"))
|
||||
@PyroClient.on_callback_query(filters.regex(r"verify;[\s\S]*")) # type: ignore
|
||||
async def callback_verify(app: PyroClient, callback: CallbackQuery):
|
||||
parsed = CallbackVerify.from_callback(callback)
|
||||
group = await PyroGroup.create_if_not_exists(callback.message.chat.id, None, True)
|
||||
|
Reference in New Issue
Block a user