mirror of
https://github.com/espressif/esptool.git
synced 2025-10-15 21:07:25 +08:00
PEP8 imports (https://www.python.org/dev/peps/pep-0008/#imports). Remove unused import statements.
This commit is contained in:
11
espsecure.py
11
espsecure.py
@@ -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):
|
||||
|
Reference in New Issue
Block a user