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>
2020.11.x
Robin Jarry 2020-09-08 10:10:24 +02:00 committed by Yann E. MORIN
parent 7b3025f93e
commit 4c77dca550
1 changed files with 5 additions and 3 deletions

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):