We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b05cadf commit 81a6177Copy full SHA for 81a6177
1 file changed
flask_phpbb3.py
@@ -306,7 +306,7 @@ def teardown(self, exception):
306
ctx.phpbb3_db.close()
307
308
309
-class PhpBB3Session(dict, flask.session.SessionMixin):
+class PhpBB3Session(dict, flask.sessions.SessionMixin):
310
def __init__(self):
311
# type: () -> None
312
# Some session related variables
@@ -506,7 +506,7 @@ def num_unread_notifications(self):
506
return int(self._request_cache['num_unread_notifications'])
507
508
509
-class PhpBB3SessionInterface(flask.session.SessionInterface):
+class PhpBB3SessionInterface(flask.sessions.SessionInterface):
510
"""A read-only session interface to access phpBB3 session."""
511
session_class = PhpBB3Session
512
0 commit comments