From d4cc5783eb1442603e23c1922d30c06b7b6c754a Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 30 Aug 2017 11:54:05 +0200 Subject: [PATCH] Sort imports --- me_cleaner.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/me_cleaner.py b/me_cleaner.py index e8a89cc..761bb34 100755 --- a/me_cleaner.py +++ b/me_cleaner.py @@ -1,6 +1,6 @@ #!/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 # # This program is free software; you can redistribute it and/or modify @@ -14,12 +14,12 @@ # GNU General Public License for more details. # -import sys -import itertools +import argparse import binascii import hashlib -import argparse +import itertools import shutil +import sys from struct import pack, unpack