do not unpack initial in call to ServerSideSession's super.

This commit is contained in:
Jonathon Fletcher
2023-11-04 11:50:46 -07:00
parent c25a62412d
commit 7e43c76ad0
+1 -1
View File
@@ -31,7 +31,7 @@ class ServerSideSession(SecureCookieSession):
"""Baseclass for server-side based sessions."""
def __init__(self, initial=None, sid=None, permanent=None, addr=None):
super(ServerSideSession, self).__init__(**initial or {})
super(ServerSideSession, self).__init__(initial or {})
self.sid = sid
if permanent:
self.permanent = permanent