Merge pull request #55 from vanillajonathan/patch-1

Sort imports
This commit is contained in:
Nicola Corna 2017-09-26 07:59:35 +02:00 committed by GitHub
commit 312ef02714

View file

@ -1,6 +1,6 @@
#!/usr/bin/python #!/usr/bin/python
# me_cleaner - Tool for partial deblobbing of Intel ME/TXE firmware images # me_cleaner - Tool for partial deblobbing of Intel ME/TXE firmware images
# Copyright (C) 2016, 2017 Nicola Corna <nicola@corna.info> # Copyright (C) 2016, 2017 Nicola Corna <nicola@corna.info>
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
@ -14,12 +14,12 @@
# GNU General Public License for more details. # GNU General Public License for more details.
# #
import sys import argparse
import itertools
import binascii import binascii
import hashlib import hashlib
import argparse import itertools
import shutil import shutil
import sys
from struct import pack, unpack from struct import pack, unpack