We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e09d2 commit e17499eCopy full SHA for e17499e
2 files changed
.isort.cfg
@@ -1,3 +1,4 @@
1
[settings]
2
force_single_line = 1
3
known_first_party = cryptojwt
4
+line_length = 100
src/cryptojwt/jws/dsa.py
@@ -1,10 +1,8 @@
from cryptography.exceptions import InvalidSignature
from cryptography.hazmat.primitives import hashes
from cryptography.hazmat.primitives.asymmetric import ec
-from cryptography.hazmat.primitives.asymmetric.utils import \
5
- decode_dss_signature
6
7
- encode_dss_signature
+from cryptography.hazmat.primitives.asymmetric.utils import decode_dss_signature
+from cryptography.hazmat.primitives.asymmetric.utils import encode_dss_signature
8
from cryptography.utils import int_from_bytes
9
from cryptography.utils import int_to_bytes
10
0 commit comments