diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-15 13:56:13 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-15 13:56:13 -0400 |
commit | 6ed173a4606e404a3908926beabc02b50a5ad8a8 (patch) | |
tree | e9201175c7d4c2599752c9b0b73379a99f3c9ad6 | |
parent | fc0a231d17767c96806b1564c3271c35b9514668 (diff) |
Rmoeved unused imports
-rw-r--r-- | paramiko/ecdsakey.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/paramiko/ecdsakey.py b/paramiko/ecdsakey.py index 604152e8..af9200c0 100644 --- a/paramiko/ecdsakey.py +++ b/paramiko/ecdsakey.py @@ -20,9 +20,7 @@ ECDSA keys """ -import base64 import binascii -import textwrap from cryptography.exceptions import InvalidSignature from cryptography.hazmat.backends import default_backend @@ -32,7 +30,7 @@ from cryptography.hazmat.primitives.asymmetric.utils import ( decode_rfc6979_signature, encode_rfc6979_signature ) -from paramiko.common import four_byte, one_byte, zero_byte +from paramiko.common import four_byte, one_byte from paramiko.message import Message from paramiko.pkey import PKey from paramiko.py3compat import byte_chr |