Skip to content

Commit 00fa8ca

Browse files
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](python/mypy@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] <[email protected]> * Update test_path_domain.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 b517e79 commit 00fa8ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ flake8-bandit==4.1.1
55
flake8-bugbear==23.9.16
66
flake8-import-order==0.18.2
77
flake8-requirements==2.0.1
8-
mypy==1.6.1
8+
mypy==1.7.0
99
pep257==0.7.0
1010
pre-commit==3.5.0
1111
sphinx==7.2.6

tests/test_path_domain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def make_cookie(
1919
domain: Optional[str] = None,
2020
) -> None:
2121
session_data = {"session": data, "created": int(time.time())}
22-
C: cookies.SimpleCookie[str] = cookies.SimpleCookie()
22+
C = cookies.SimpleCookie()
2323
value = json.dumps(session_data)
2424
C["AIOHTTP_SESSION"] = value
2525
C["AIOHTTP_SESSION"]["path"] = path

0 commit comments

Comments
 (0)