Skip to content

Commit 1b429fe

Browse files
committed
Fix unittest coverage
1 parent 3329464 commit 1b429fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flask_jwt_extended/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def get_jwt_claims():
3535
def _get_jwt_manager():
3636
try:
3737
return current_app.jwt_manager
38-
except AttributeError:
38+
except AttributeError: # pragma: no cover
3939
raise RuntimeError("You must initialize a JWTManager with this flask"
4040
"application before using this method")
4141

0 commit comments

Comments
 (0)