mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
More tests for session
This commit is contained in:
parent
9d41428ed6
commit
0e35b6f55e
4 changed files with 122 additions and 5 deletions
|
|
@ -2,8 +2,8 @@ from typing import TypeVar
|
|||
|
||||
from ...utils.mixins import ContextInstanceMixin
|
||||
from ..methods import TelegramMethod
|
||||
from aiogram.api.client.session.aiohttp import AiohttpSession
|
||||
from aiogram.api.client.session.base import BaseSession
|
||||
from .session.aiohttp import AiohttpSession
|
||||
from .session.base import BaseSession
|
||||
|
||||
T = TypeVar("T")
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ from typing import Callable, Optional, TypeVar, cast
|
|||
from aiohttp import ClientSession, FormData
|
||||
|
||||
from aiogram.api.methods import Request, TelegramMethod
|
||||
|
||||
from .base import PRODUCTION, BaseSession, TelegramAPIServer
|
||||
|
||||
T = TypeVar("T")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue