fix mypy findings

This commit is contained in:
David Lord 2024-04-23 16:49:42 -07:00
parent db0fe9436e
commit ccf125bf30
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8

View file

@ -368,7 +368,7 @@ class SecureCookieSessionInterface(SessionInterface):
val = self.get_signing_serializer(app).dumps(dict(session)) # type: ignore
response.set_cookie(
name,
val, # type: ignore
val,
expires=expires,
httponly=httponly,
domain=domain,