PEP8 imports (https://www.python.org/dev/peps/pep-0008/#imports). Remove unused import statements.

This commit is contained in:
Ryan Jarvis
2017-09-17 12:22:03 -07:00
parent b5fe4d9a7d
commit fa7e37aa4c
20 changed files with 75 additions and 62 deletions

View File

@@ -15,16 +15,17 @@
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301 USA.
from __future__ import print_function, division
from __future__ import division, print_function
import esptool
import argparse
import sys
import os
import hashlib
import os
import struct
import pyaes
import sys
import ecdsa
import esptool
import pyaes
def get_chunks(source, chunk_len):