Skip to content

Commit e17499e

Browse files
committed
Black and isort disagreed on line length.
1 parent 13e09d2 commit e17499e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.isort.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[settings]
22
force_single_line = 1
33
known_first_party = cryptojwt
4+
line_length = 100

src/cryptojwt/jws/dsa.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
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 \
5-
decode_dss_signature
6-
from cryptography.hazmat.primitives.asymmetric.utils import \
7-
encode_dss_signature
4+
from cryptography.hazmat.primitives.asymmetric.utils import decode_dss_signature
5+
from cryptography.hazmat.primitives.asymmetric.utils import encode_dss_signature
86
from cryptography.utils import int_from_bytes
97
from cryptography.utils import int_to_bytes
108

0 commit comments

Comments
 (0)