chore: code reformat and lint

This commit is contained in:
Oleg A 2023-09-23 00:52:20 +03:00
parent 182a8c314c
commit 5c4f4c58c3
No known key found for this signature in database
GPG key ID: 5FE046817A9657C5
2 changed files with 1 additions and 2 deletions

View file

@ -101,7 +101,6 @@ class TestBot:
async def test_download_file_custom_destination(self, aresponses: ResponsesMockServer):
async with Bot("42:TEST").context() as bot:
aresponses.add(
aresponses.ANY,
aresponses.ANY,

View file

@ -12,7 +12,7 @@ from aiogram.client.session import aiohttp
from aiogram.client.session.aiohttp import AiohttpSession
from aiogram.exceptions import TelegramNetworkError
from aiogram.methods import TelegramMethod
from aiogram.types import InputFile, UNSET_PARSE_MODE
from aiogram.types import UNSET_PARSE_MODE, InputFile
from tests.mocked_bot import MockedBot