From 89f16efba0b0b511ed996a00991725c8546d741f Mon Sep 17 00:00:00 2001 From: Vikas Prasad Date: Sat, 17 Nov 2018 22:23:26 +0530 Subject: [PATCH] Fix typo --- flask_jwt_simple/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask_jwt_simple/utils.py b/flask_jwt_simple/utils.py index f05f49d..7151a41 100644 --- a/flask_jwt_simple/utils.py +++ b/flask_jwt_simple/utils.py @@ -20,7 +20,7 @@ def _get_jwt_manager(): def get_jwt(): """ Returns the python dictionary which has all of the data in this JWT. If no - JWT is currently present, and empty dict is returned + JWT is currently present, an empty dict is returned """ return getattr(ctx_stack.top, 'jwt', {})