File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
22
class AiohttpClient (Protocol ):
23
23
# TODO(PY311): Use Unpack to specify ClientSession kwargs.
24
24
@overload
25
- async def __call__ ( # type: ignore[misc]
25
+ async def __call__ (
26
26
self ,
27
27
__param : Application ,
28
28
* ,
@@ -31,7 +31,7 @@ async def __call__( # type: ignore[misc]
31
31
) -> TestClient [Request , Application ]: ...
32
32
33
33
@overload
34
- async def __call__ ( # type: ignore[misc]
34
+ async def __call__ (
35
35
self ,
36
36
__param : BaseTestServer , # TODO(aiohttp4): BaseTestServer[_Request]
37
37
* ,
@@ -165,15 +165,15 @@ async def aiohttp_client( # type: ignore[misc]
165
165
clients = []
166
166
167
167
@overload
168
- async def go ( # type: ignore[misc]
168
+ async def go (
169
169
__param : Application ,
170
170
* ,
171
171
server_kwargs : Optional [Dict [str , Any ]] = None ,
172
172
** kwargs : Any ,
173
173
) -> TestClient [Request , Application ]: ...
174
174
175
175
@overload
176
- async def go ( # type: ignore[misc]
176
+ async def go (
177
177
__param : BaseTestServer , # TODO(aiohttp4): BaseTestServer[_Request]
178
178
* ,
179
179
server_kwargs : Optional [Dict [str , Any ]] = None ,
Original file line number Diff line number Diff line change 1
1
-r requirements.txt
2
2
3
- mypy == 1.15 .0
3
+ mypy == 1.16 .0
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ install_requires =
48
48
[options.extras_require]
49
49
testing =
50
50
coverage == 7.8.2
51
- mypy == 1.15 .0
51
+ mypy == 1.16 .0
52
52
53
53
[options.entry_points]
54
54
pytest11 =
You can’t perform that action at this time.
0 commit comments