mirror of
https://github.com/espressif/esptool.git
synced 2025-10-16 23:06:31 +08:00
PEP8 imports (https://www.python.org/dev/peps/pep-0008/#imports). Remove unused import statements.
This commit is contained in:
@@ -1,24 +1,25 @@
|
||||
from __future__ import with_statement, division
|
||||
from __future__ import division, with_statement
|
||||
|
||||
import unittest
|
||||
import os
|
||||
import time
|
||||
import shutil
|
||||
import subprocess
|
||||
import time
|
||||
import unittest
|
||||
from binascii import hexlify, unhexlify
|
||||
from hashlib import sha1, sha256, sha512
|
||||
|
||||
from .six import b, print_, binary_type
|
||||
from .keys import SigningKey, VerifyingKey
|
||||
from .keys import BadSignatureError
|
||||
from . import der
|
||||
from . import rfc6979
|
||||
from . import util
|
||||
from .util import sigencode_der, sigencode_strings
|
||||
from .util import sigdecode_der, sigdecode_strings
|
||||
from .curves import Curve, UnknownCurveError
|
||||
from .curves import NIST192p, NIST224p, NIST256p, NIST384p, NIST521p, SECP256k1
|
||||
from .ellipticcurve import Point
|
||||
from . import der
|
||||
from . import rfc6979
|
||||
from .keys import BadSignatureError
|
||||
from .keys import SigningKey, VerifyingKey
|
||||
from .six import b, binary_type, print_
|
||||
from .util import sigdecode_der, sigdecode_strings
|
||||
from .util import sigencode_der, sigencode_strings
|
||||
|
||||
|
||||
class SubprocessError(Exception):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user