fix: resolve warning "Expected type 'None', got 'Application' instead" (#1689)

This commit is contained in:
Jasur Yusupov 2025-05-09 23:24:12 +05:00 committed by GitHub
parent 482629ac18
commit 3812157913
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@ from asyncio import Transport
from typing import Any, Awaitable, Callable, Dict, Optional, Set, Tuple, cast from typing import Any, Awaitable, Callable, Dict, Optional, Set, Tuple, cast
from aiohttp import JsonPayload, MultipartWriter, Payload, web from aiohttp import JsonPayload, MultipartWriter, Payload, web
from aiohttp.abc import Application from aiohttp.web_app import Application
from aiohttp.typedefs import Handler from aiohttp.typedefs import Handler
from aiohttp.web_middlewares import middleware from aiohttp.web_middlewares import middleware