1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Asyncio.run back

This commit is contained in:
_run
2021-12-12 15:07:30 +05:00
parent 7588c9fb9f
commit e92946301f
19 changed files with 49 additions and 26 deletions

View File

@ -30,4 +30,5 @@ async def my_chat_m(message: types.ChatMemberUpdated):
@bot.message_handler(content_types=util.content_type_service)
async def delall(message: types.Message):
await bot.delete_message(message.chat.id,message.message_id)
bot.polling()
import asyncio
asyncio.run(bot.polling())