Skip to content

Commit 13e09d2

Browse files
committed
Updated my isort.
1 parent b7e3f56 commit 13e09d2

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

src/cryptojwt/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
from .utils import split_token
1616

1717
try:
18-
from builtins import hex, str, zip
18+
from builtins import hex
19+
from builtins import str
20+
from builtins import zip
1921
except ImportError:
2022
pass
2123

src/cryptojwt/jws/dsa.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
from cryptography.exceptions import InvalidSignature
22
from cryptography.hazmat.primitives import hashes
33
from cryptography.hazmat.primitives.asymmetric import ec
4-
from cryptography.hazmat.primitives.asymmetric.utils import decode_dss_signature
5-
from cryptography.hazmat.primitives.asymmetric.utils import encode_dss_signature
4+
from cryptography.hazmat.primitives.asymmetric.utils import \
5+
decode_dss_signature
6+
from cryptography.hazmat.primitives.asymmetric.utils import \
7+
encode_dss_signature
68
from cryptography.utils import int_from_bytes
79
from cryptography.utils import int_to_bytes
810

src/cryptojwt/jws/jws.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
from .utils import alg2keytype
2424

2525
try:
26-
from builtins import object, str
26+
from builtins import object
27+
from builtins import str
2728
except ImportError:
2829
pass
2930

tests/test_20_jws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import sys
33

44
import pytest
5-
65
import test_vector
6+
77
from cryptojwt import utils
88
from cryptojwt.exception import JWKESTException
99
from cryptojwt.jwk.jwk import key_from_jwk_dict

0 commit comments

Comments
 (0)