pycodestyle: Module level import not at top of file

Changes:
     - Added NOQA on python files import to skip CI
     - Fix import order reported by CI.

Tested:
     - CI will catch this if there is error

Change-Id: I39a11d3e815a08488671ed948f073828e19aee37
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/bin/print_ffdc_functions b/bin/print_ffdc_functions
index dd46bc6..7988195 100755
--- a/bin/print_ffdc_functions
+++ b/bin/print_ffdc_functions
@@ -9,10 +9,10 @@
 save_path_0 = sys.path[0]
 del sys.path[0]
 
-from gen_arg import *
-from gen_print import *
-from gen_valid import *
-from openbmc_ffdc_list import *
+from gen_arg import *               # NOQA
+from gen_print import *             # NOQA
+from gen_valid import *             # NOQA
+from openbmc_ffdc_list import *     # NOQA
 
 # Restore sys.path[0].
 sys.path.insert(0, save_path_0)