Skip to content

Commit e150aae

Browse files
committed
Documentation fixes
1 parent e93707c commit e150aae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flask_jwt_extended/jwt_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def __init__(self, app: Flask = None, add_context_processor: bool = False) -> No
6666
:param add_context_processor:
6767
Controls if `current_user` is should be added to flasks template
6868
context (and thus be available for use in Jinja templates). Defaults
69-
to ``True``.
69+
to ``False``.
7070
"""
7171
# Register the default error handler callback methods. These can be
7272
# overridden with the appropriate loader decorators
@@ -101,7 +101,7 @@ def init_app(self, app: Flask, add_context_processor: bool = False) -> None:
101101
:param add_context_processor:
102102
Controls if `current_user` is should be added to flasks template
103103
context (and thus be available for use in Jinja templates). Defaults
104-
to ``True``.
104+
to ``False``.
105105
"""
106106
# Save this so we can use it later in the extension
107107
if not hasattr(app, "extensions"): # pragma: no cover

0 commit comments

Comments
 (0)