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