From 0d390bb9cce4da38c62950bbbf6af833577c8f0e Mon Sep 17 00:00:00 2001 From: Vladless Date: Mon, 28 Oct 2024 00:26:24 +0300 Subject: [PATCH] rm --- .gitignore | 1 + bot.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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)