We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5853ea7 commit 1a38e31Copy full SHA for 1a38e31
jwt/__init__.py
@@ -1,4 +1,5 @@
1
-""" JSON Web Token implementation
+"""
2
+JSON Web Token implementation
3
4
Minimum implementation based on this spec:
5
http://self-issued.info/docs/draft-jones-json-web-token-01.html
@@ -83,7 +84,7 @@ def prepare_HS_key(key):
83
84
from cryptography.hazmat.primitives.serialization import (
85
load_pem_private_key, load_pem_public_key, load_ssh_public_key
86
)
- from cryptography.hazmat.primitives.asymmetric import ec, rsa, padding
87
+ from cryptography.hazmat.primitives.asymmetric import ec, padding
88
from cryptography.hazmat.backends import default_backend
89
from cryptography.exceptions import InvalidSignature
90
0 commit comments