diff --git a/.gitignore b/.gitignore index 101388c8..f4cd9347 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /config copy.py /docker-compose.yml __pycache__ +/handlers/texts.py diff --git a/bot.py b/bot.py index cae09814..218df3d9 100644 --- a/bot.py +++ b/bot.py @@ -8,7 +8,7 @@ storage = MemoryStorage() dp = Dispatcher(bot=bot, storage=storage) router = Router() -from handlers.admin import admin, admin_panel, user_editor +from handlers.admin import admin, admin_panel, user_editor, update_bot from handlers.keys import key_management, keys from handlers import (notifications, pay, profile, start, commands)