From d3ce3ba78c4739d99924f170631dfe7b080a353e Mon Sep 17 00:00:00 2001 From: pacien Date: Tue, 3 Aug 2021 09:51:01 +0200 Subject: app/sessions: fix terminology --- app/app_sessions.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/app_sessions.py b/app/app_sessions.py index 7a931d5..9f46404 100644 --- a/app/app_sessions.py +++ b/app/app_sessions.py @@ -17,10 +17,10 @@ SessionManager = partial(SessionMiddleware, secret_key=cookie_key) class FlashMessageQueue: """ - Session decorator for managing session flash messages to be displayed to - the user from one page to another. This suits confirmation and error - messages. Messages are stored in the session cookie, which is limited in - size to about 4kb. + Session proxy for managing session flash messages to be displayed to the + user from one page to another. This suits confirmation and error messages. + Messages are stored in the session cookie, which is limited in size to + about 4kb. """ def __init__(self, request: Request): @@ -44,7 +44,7 @@ class FlashMessageQueue: class UserSession: """ - Session decorator for managing user login sessions. + Session proxy for managing user login sessions. """ def __init__(self, request: Request): -- cgit v1.2.3