From eddaadd1cc17879ee08a72b992facee15c8286c5 Mon Sep 17 00:00:00 2001 From: Vladless Date: Mon, 11 Nov 2024 09:22:14 +0300 Subject: [PATCH] isort settings --- .isort.cfg | 3 ++- bot.py | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.isort.cfg b/.isort.cfg index ffc56c98..63c90e22 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -1,3 +1,4 @@ [settings] profile=black -line_length = 200 \ No newline at end of file +line_length = 200 +skip = ["bot.py"] \ No newline at end of file diff --git a/bot.py b/bot.py index 8a03a93f..89dfdc50 100644 --- a/bot.py +++ b/bot.py @@ -15,7 +15,6 @@ from handlers.admin import admin, admin_panel, user_editor from handlers.keys import key_management, keys from handlers.payment import freekassa_pay, yookassa_pay - dp.include_router(admin.router) dp.include_router(admin_panel.router) dp.include_router(user_editor.router)