summaryrefslogtreecommitdiff
path: root/jwt/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'jwt/types.py')
-rw-r--r--jwt/types.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/jwt/types.py b/jwt/types.py
index 830b185..7d99352 100644
--- a/jwt/types.py
+++ b/jwt/types.py
@@ -1,3 +1,5 @@
-from typing import Any, Dict
+from typing import Any, Callable, Dict
JWKDict = Dict[str, Any]
+
+HashlibHash = Callable[..., Any]