Skip to content

Commit 1a38e31

Browse files
committed
Remove unused import
1 parent 5853ea7 commit 1a38e31

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jwt/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
""" JSON Web Token implementation
1+
"""
2+
JSON Web Token implementation
23
34
Minimum implementation based on this spec:
45
http://self-issued.info/docs/draft-jones-json-web-token-01.html
@@ -83,7 +84,7 @@ def prepare_HS_key(key):
8384
from cryptography.hazmat.primitives.serialization import (
8485
load_pem_private_key, load_pem_public_key, load_ssh_public_key
8586
)
86-
from cryptography.hazmat.primitives.asymmetric import ec, rsa, padding
87+
from cryptography.hazmat.primitives.asymmetric import ec, padding
8788
from cryptography.hazmat.backends import default_backend
8889
from cryptography.exceptions import InvalidSignature
8990

0 commit comments

Comments
 (0)