We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b6fa42 commit e4da0a1Copy full SHA for e4da0a1
flask_jwt_extended/utils.py
@@ -11,7 +11,7 @@
11
from flask_jwt_extended.internal_utils import get_jwt_manager
12
13
# Proxy to access the current user
14
-current_user = LocalProxy(lambda: get_current_user())
+current_user: Any = LocalProxy(lambda: get_current_user())
15
16
17
def get_jwt() -> dict:
0 commit comments