Thanks to visit codestin.com Credit goes to github.com
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 0b1ee93 commit 3e26a91Copy full SHA for 3e26a91
1 file changed
stubs/WebOb/webob/cookies.pyi
@@ -27,8 +27,8 @@ _T = TypeVar("_T")
27
_SameSitePolicy: TypeAlias = Literal["Strict", "Lax", "None", "strict", "lax", "none"]
28
29
class _Serializer(Protocol):
30
- def loads(self, appstruct: Any, /) -> bytes: ...
31
- def dumps(self, bstruct: bytes, /) -> Any: ...
+ def dumps(self, appstruct: Any, /) -> bytes: ...
+ def loads(self, bstruct: bytes, /) -> Any: ...
32
33
class RequestCookies(MutableMapping[str, str]):
34
def __init__(self, environ: WSGIEnvironment) -> None: ...
0 commit comments