Skip to content

Commit 5f0c0c8

Browse files
committed
Most editorial
1 parent 59cb92b commit 5f0c0c8

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

src/cryptojwt/jwk/jwk.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,4 +173,3 @@ def jwk_wrap(key, use="", kid=""):
173173

174174
kspec.serialize()
175175
return kspec
176-

src/cryptojwt/key_bundle.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
import json
22
import logging
33
import os
4+
import time
45
from functools import cmp_to_key
56

67
import requests
7-
import time
88

9-
from .exception import JWKException, DeSerializationNotPossible
9+
from .exception import DeSerializationNotPossible
10+
from .exception import JWKException
1011
from .exception import UnknownKeyType
1112
from .exception import UpdateFailed
12-
from .jwk.hmac import SYMKey
1313
from .jwk.ec import ECKey
1414
from .jwk.ec import new_ec_key
15-
from .jwk.rsa import new_rsa_key
15+
from .jwk.hmac import SYMKey
1616
from .jwk.rsa import RSAKey
1717
from .jwk.rsa import import_private_rsa_key_from_file
18+
from .jwk.rsa import new_rsa_key
1819
from .utils import as_unicode
1920

20-
2121
__author__ = 'Roland Hedberg'
2222

2323
KEYLOADERR = "Failed to load %s key from '%s' (%s)"

tests/test_06_jws.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,6 @@ def test_jws_mm():
357357
_jws2.verify_compact(res, keys=[key])
358358

359359

360-
361-
362360
@pytest.mark.parametrize("ec_func,alg", [
363361
(ec.SECP256R1, "ES256"),
364362
(ec.SECP384R1, "ES384"),

0 commit comments

Comments
 (0)