mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Fixed Py3.8 support
This commit is contained in:
parent
c26ff48f70
commit
0269dd7ac8
1 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import asyncio
|
||||
from typing import Any, AsyncContextManager, AsyncGenerator
|
||||
from typing import Any, AsyncContextManager, AsyncGenerator, Dict, List
|
||||
from unittest.mock import AsyncMock, patch
|
||||
|
||||
import aiohttp_socks
|
||||
|
|
@ -113,8 +113,8 @@ class TestAiohttpSession:
|
|||
bool_: bool
|
||||
unset_: str = UNSET_PARSE_MODE
|
||||
null_: None
|
||||
list_: list[str]
|
||||
dict_: dict[str, Any]
|
||||
list_: List[str]
|
||||
dict_: Dict[str, Any]
|
||||
|
||||
session = AiohttpSession()
|
||||
form = session.build_form_data(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue