]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blobdiff - support/scripts/pycompile.py
pycompile: fix code style
[coffee/buildroot.git] / support / scripts / pycompile.py
index 8e164ab9d13b2dc34db1b83cc40b33c5fab3c10f..9192a7016a78f58fe5e9adbf6d04dea9b647e876 100644 (file)
@@ -12,6 +12,7 @@ import py_compile
 import compileall
 import argparse
 
+
 def check_for_errors(comparison):
     '''Wrap comparison operator with code checking for PyCompileError.
     If PyCompileError was raised, re-raise it again to abort execution,
@@ -28,6 +29,7 @@ def check_for_errors(comparison):
 
     return operator
 
+
 class ReportProblem(int):
     '''Class that pretends to be an int() object but implements all of its
     comparison operators such that it'd detect being called in
@@ -55,6 +57,7 @@ class ReportProblem(int):
     def __ne__(self, other):
         return not self == other
 
+
 parser = argparse.ArgumentParser(description='Compile Python source files in a directory tree.')
 parser.add_argument("target", metavar='DIRECTORY',
                     help='Directory to scan')