From 00fa8cae953f21cde51229f38eef719cadd39e3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 19:09:37 +0000 Subject: [PATCH] Bump mypy from 1.6.1 to 1.7.0 (#944) * Bump mypy from 1.6.1 to 1.7.0 Bumps [mypy](https://github.com/python/mypy) from 1.6.1 to 1.7.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.6.1...v1.7.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Update test_path_domain.py --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sam Bull --- requirements-dev.txt | 2 +- tests/test_path_domain.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 63745491..0fc3a09d 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -5,7 +5,7 @@ flake8-bandit==4.1.1 flake8-bugbear==23.9.16 flake8-import-order==0.18.2 flake8-requirements==2.0.1 -mypy==1.6.1 +mypy==1.7.0 pep257==0.7.0 pre-commit==3.5.0 sphinx==7.2.6 diff --git a/tests/test_path_domain.py b/tests/test_path_domain.py index 5be1e39d..33911e57 100644 --- a/tests/test_path_domain.py +++ b/tests/test_path_domain.py @@ -19,7 +19,7 @@ def make_cookie( domain: Optional[str] = None, ) -> None: session_data = {"session": data, "created": int(time.time())} - C: cookies.SimpleCookie[str] = cookies.SimpleCookie() + C = cookies.SimpleCookie() value = json.dumps(session_data) C["AIOHTTP_SESSION"] = value C["AIOHTTP_SESSION"]["path"] = path