testx
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Pavel_Duron 2022-12-06 20:57:57 +10:00
parent 456e37f07f
commit aae4506ffe
2 changed files with 2 additions and 2 deletions

2
bot.py
View File

@ -8,7 +8,7 @@ logging.basicConfig(level=logging.DEBUG)
@dp.message_handler(commands=['alarm']) @dp.message_handler(commands=['alarm'])
async def notify_chats(): async def notify_chats():
await bot.send_message(226765676, 'рассылка завершена') await bot.send_message(226765676, text= 'рассылка завершена')
pipisa.register_handlers_pipisa(dp) pipisa.register_handlers_pipisa(dp)

View File

@ -7,7 +7,7 @@ async def notify_chats():
for chats in session.query(user.chat_id).distinct(): for chats in session.query(user.chat_id).distinct():
session.close() session.close()
await bot.send_message(chats,'<b>Ведутся пажилые работы,\n Ожидайте...</b>') await bot.send_message(chats,'<b>Ведутся пажилые работы,\n Ожидайте...</b>')
await bot.send_message(226765676, 'рассылка завершена') await bot.send_message(226765676, text= 'рассылка завершена')
def register_handlers_alarm(dp: Dispatcher): def register_handlers_alarm(dp: Dispatcher):
dp.register_message_handler(notify_chats) dp.register_message_handler(notify_chats)