From 80b9d35d8f64fd9ac24326a105135d40d13d7fe8 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Wed, 9 Feb 2022 18:28:51 +0300 Subject: [PATCH] little fix --- start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.py b/start.py index 062072e..3a05296 100644 --- a/start.py +++ b/start.py @@ -13,7 +13,7 @@ TELEGRAM_WEBHOOK_URL = f'{config.base_url}{config.api_token}' logging.basicConfig(level=logging.INFO) -bot = Bot(token=config.TELEGRAM_TOKEN) +bot = Bot(token=config.api_token) dp = Dispatcher(bot) dp.middleware.setup(LoggingMiddleware())