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

This commit is contained in:
2025-03-28 19:36:10 +05:00
parent a0ca2e7e1e
commit 3c0ca73b1d
4 changed files with 9 additions and 9 deletions

6
bot.py
View File

@@ -2,8 +2,8 @@ from aiogram import Bot, Dispatcher, types
from aiogram.types import Message, InlineKeyboardMarkup, InlineKeyboardButton
from aiogram.utils import executor
from aiogram.dispatcher.filters import Text
from user_manager import user_manager
from timer_manager import timer_manager
from pomodoro_bot.user_manager import user_manager
from pomodoro_bot.timer_manager import timer_manager
import os
API_TOKEN = os.getenv("BOT_TOKEN")
@@ -40,4 +40,4 @@ async def handle_callback(call: types.CallbackQuery):
await call.answer()
def run_bot():
executor.start_polling(dp, skip_updates=True)
executor.start_polling(dp, skip_updates=True)