Skip to content

Commit 6daa6de

Browse files
committed
__init__.py: fix pyflakes
1 parent 33adacb commit 6daa6de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ecdsa/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from .keys import SigningKey, VerifyingKey, BadSignatureError, BadDigestError,\
2-
MalformedPointError
2+
MalformedPointError
33
from .curves import NIST192p, NIST224p, NIST256p, NIST384p, NIST521p,\
4-
SECP256k1, BRAINPOOLP160r1, BRAINPOOLP192r1, BRAINPOOLP224r1,\
5-
BRAINPOOLP256r1, BRAINPOOLP320r1, BRAINPOOLP384r1, BRAINPOOLP512r1
4+
SECP256k1, BRAINPOOLP160r1, BRAINPOOLP192r1, BRAINPOOLP224r1,\
5+
BRAINPOOLP256r1, BRAINPOOLP320r1, BRAINPOOLP384r1, BRAINPOOLP512r1
66
from .ecdh import ECDH, NoKeyError, NoCurveError, InvalidCurveError, \
77
InvalidSharedSecretError
88
from .der import UnexpectedDER

0 commit comments

Comments
 (0)