Skip to content

Commit 81a6177

Browse files
committed
Typo fix
1 parent b05cadf commit 81a6177

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

flask_phpbb3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def teardown(self, exception):
306306
ctx.phpbb3_db.close()
307307

308308

309-
class PhpBB3Session(dict, flask.session.SessionMixin):
309+
class PhpBB3Session(dict, flask.sessions.SessionMixin):
310310
def __init__(self):
311311
# type: () -> None
312312
# Some session related variables
@@ -506,7 +506,7 @@ def num_unread_notifications(self):
506506
return int(self._request_cache['num_unread_notifications'])
507507

508508

509-
class PhpBB3SessionInterface(flask.session.SessionInterface):
509+
class PhpBB3SessionInterface(flask.sessions.SessionInterface):
510510
"""A read-only session interface to access phpBB3 session."""
511511
session_class = PhpBB3Session
512512

0 commit comments

Comments
 (0)