fix to ruff

This commit is contained in:
2024-12-21 22:21:38 +07:00
parent cf7ba9e059
commit 6a78096db1
4 changed files with 20 additions and 4 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
from aiogram import Bot
from aiogram.client.default import DefaultBotProperties
from aiogram.fsm.storage.memory import MemoryStorage
from aiogram.enums import ParseMode
from aiogram.fsm.storage.memory import MemoryStorage
from config.settings import BOT_TOKEN
bot = Bot(
+2 -2
View File
@@ -1,5 +1,5 @@
import aiohttp
from aiogram import Router, types, F
from aiogram import F, Router, types
from aiogram.enums import ContentType
from bot.utils.actions import BotActions
@@ -9,7 +9,7 @@ from config.settings import (
BOT_PROXY_IP,
BOT_PROXY_PASSWORD,
BOT_PROXY_SOCKS5_PORT,
BOT_PROXY_USER
BOT_PROXY_USER,
)
router = Router()