We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b517e79 commit 00fa8caCopy full SHA for 00fa8ca
requirements-dev.txt
@@ -5,7 +5,7 @@ flake8-bandit==4.1.1
5
flake8-bugbear==23.9.16
6
flake8-import-order==0.18.2
7
flake8-requirements==2.0.1
8
-mypy==1.6.1
+mypy==1.7.0
9
pep257==0.7.0
10
pre-commit==3.5.0
11
sphinx==7.2.6
tests/test_path_domain.py
@@ -19,7 +19,7 @@ def make_cookie(
19
domain: Optional[str] = None,
20
) -> None:
21
session_data = {"session": data, "created": int(time.time())}
22
- C: cookies.SimpleCookie[str] = cookies.SimpleCookie()
+ C = cookies.SimpleCookie()
23
value = json.dumps(session_data)
24
C["AIOHTTP_SESSION"] = value
25
C["AIOHTTP_SESSION"]["path"] = path
0 commit comments