Skip to content

Commit 146ce04

Browse files
Bump mypy from 1.15.0 to 1.16.0 (#79)
* Bump mypy from 1.15.0 to 1.16.0 Bumps [mypy](https://github.com/python/mypy) from 1.15.0 to 1.16.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](python/mypy@v1.15.0...v1.16.0) --- updated-dependencies: - dependency-name: mypy dependency-version: 1.16.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Update plugin.py --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sam Bull <[email protected]>
1 parent 90f3385 commit 146ce04

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

pytest_aiohttp/plugin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
class AiohttpClient(Protocol):
2323
# TODO(PY311): Use Unpack to specify ClientSession kwargs.
2424
@overload
25-
async def __call__( # type: ignore[misc]
25+
async def __call__(
2626
self,
2727
__param: Application,
2828
*,
@@ -31,7 +31,7 @@ async def __call__( # type: ignore[misc]
3131
) -> TestClient[Request, Application]: ...
3232

3333
@overload
34-
async def __call__( # type: ignore[misc]
34+
async def __call__(
3535
self,
3636
__param: BaseTestServer, # TODO(aiohttp4): BaseTestServer[_Request]
3737
*,
@@ -165,15 +165,15 @@ async def aiohttp_client( # type: ignore[misc]
165165
clients = []
166166

167167
@overload
168-
async def go( # type: ignore[misc]
168+
async def go(
169169
__param: Application,
170170
*,
171171
server_kwargs: Optional[Dict[str, Any]] = None,
172172
**kwargs: Any,
173173
) -> TestClient[Request, Application]: ...
174174

175175
@overload
176-
async def go( # type: ignore[misc]
176+
async def go(
177177
__param: BaseTestServer, # TODO(aiohttp4): BaseTestServer[_Request]
178178
*,
179179
server_kwargs: Optional[Dict[str, Any]] = None,

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
-r requirements.txt
22

3-
mypy==1.15.0
3+
mypy==1.16.0

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ install_requires =
4848
[options.extras_require]
4949
testing =
5050
coverage == 7.8.2
51-
mypy == 1.15.0
51+
mypy == 1.16.0
5252

5353
[options.entry_points]
5454
pytest11 =

0 commit comments

Comments
 (0)