support/scripts/pycompile: sort imports

Signed-off-by: Robin Jarry <robin.jarry@6wind.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 4c77dca550)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Robin Jarry
2020-09-08 10:10:24 +02:00
committed by Peter Korsgaard
parent 416bb105d8
commit 8673646dcc

View File

@@ -6,11 +6,13 @@ when a python byte code generation failed.
Inspired from:
http://stackoverflow.com/questions/615632/how-to-detect-errors-from-compileall-compile-dir
'''
from __future__ import print_function
import sys
import py_compile
import compileall
import argparse
import compileall
import py_compile
import sys
def check_for_errors(comparison):