File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
3
+ import collections .abc as c
3
4
import hashlib
4
5
import typing as t
5
6
from collections .abc import MutableMapping
20
21
from .wrappers import Response
21
22
22
23
23
- # TODO generic when Python > 3.8
24
- class SessionMixin (MutableMapping ): # type: ignore[type-arg]
24
+ class SessionMixin (MutableMapping [str , t .Any ]):
25
25
"""Expands a basic dictionary with session attributes."""
26
26
27
27
@property
@@ -49,8 +49,7 @@ def permanent(self, value: bool) -> None:
49
49
accessed = True
50
50
51
51
52
- # TODO generic when Python > 3.8
53
- class SecureCookieSession (CallbackDict , SessionMixin ): # type: ignore[type-arg]
52
+ class SecureCookieSession (CallbackDict [str , t .Any ], SessionMixin ):
54
53
"""Base class for sessions based on signed cookies.
55
54
56
55
This session backend will set the :attr:`modified` and
@@ -72,7 +71,10 @@ class SecureCookieSession(CallbackDict, SessionMixin): # type: ignore[type-arg]
72
71
#: different users.
73
72
accessed = False
74
73
75
- def __init__ (self , initial : t .Any = None ) -> None :
74
+ def __init__ (
75
+ self ,
76
+ initial : c .Mapping [str , t .Any ] | c .Iterable [tuple [str , t .Any ]] | None = None ,
77
+ ) -> None :
76
78
def on_update (self : te .Self ) -> None :
77
79
self .modified = True
78
80
self .accessed = True
You can’t perform that action at this time.
0 commit comments