From bc261aa3f7f503424ed7437087263296462c5fc4 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Mon, 13 Nov 2023 18:47:01 +0000 Subject: [PATCH] Update test_path_domain.py --- tests/test_path_domain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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