Skip to content

Commit 44bfafc

Browse files
author
brentru
committed
linting
1 parent 11a4fa1 commit 44bfafc

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

adafruit_rsa/key.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ def _load_pkcs1_der(cls, keyfile):
499499

500500
if (key.exp1, key.exp2, key.coef) != (exp1, exp2, coef):
501501
log.debug('You have providied a malformed keyfile. Either the exponents'
502-
'or the coefficient are incorrect.')
502+
'or the coefficient are incorrect.')
503503

504504
return key
505505

adafruit_rsa/transform.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@
1818
1919
From bytes to a number, number to bytes, etc.
2020
"""
21-
22-
from adafruit_binascii import hexlify
2321
from struct import pack
22+
from adafruit_binascii import hexlify
2423

2524
from adafruit_rsa._compat import byte, is_integer
2625
from adafruit_rsa import common, machine_size

0 commit comments

Comments
 (0)