From 82d5aa14ee609de9ecd965720d79aea243a8bd44 Mon Sep 17 00:00:00 2001 From: Pavel_Duron Date: Tue, 6 Dec 2022 22:20:38 +1000 Subject: [PATCH] fix --- bot.py | 6 ++---- handlers/__init__.py | 3 +-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/bot.py b/bot.py index bce85aa..98d9210 100644 --- a/bot.py +++ b/bot.py @@ -1,7 +1,7 @@ -from create_bot import dp, bot +from create_bot import dp import logging from aiogram import executor -from handlers import pipisa, time_new_year, start_help, coding +from handlers import pipisa, time_new_year, start_help logging.basicConfig(level=logging.DEBUG) @@ -11,10 +11,8 @@ logging.basicConfig(level=logging.DEBUG) pipisa.register_handlers_pipisa(dp) time_new_year.register_handlers_time(dp) start_help.register_handlers_StartHelp(dp) -coding.register_handlers_alarm(dp) - if __name__ == '__main__': diff --git a/handlers/__init__.py b/handlers/__init__.py index 1453e09..153685f 100644 --- a/handlers/__init__.py +++ b/handlers/__init__.py @@ -1,4 +1,3 @@ from handlers import pipisa from handlers import time_new_year -from handlers import start_help -from handlers import coding \ No newline at end of file +from handlers import start_help \ No newline at end of file