Skip to content

Commit

Permalink
Fix verify_type=False bug (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
vimalloc committed Jun 27, 2022
1 parent 47c5d92 commit dd4467c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_jwt_extended/view_decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def verify_jwt_in_request(
fresh: bool = False,
refresh: bool = False,
locations: LocationType = None,
verify_type: bool = False,
verify_type: bool = True,
) -> Optional[Tuple[dict, dict]]:
"""
Verify that a valid JWT is present in the request, unless ``optional=True`` in
Expand Down

0 comments on commit dd4467c

Please sign in to comment.