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/syslib/utils_os.py b/syslib/utils_os.py
index 2026d95..0c6131a 100755
--- a/syslib/utils_os.py
+++ b/syslib/utils_os.py
@@ -9,8 +9,8 @@
sys.path.append(os.path.join(os.path.dirname(__file__), "../lib"))
-import bmc_ssh_utils
-import var_funcs
+import bmc_ssh_utils # NOQA
+import var_funcs # NOQA
def get_os_release_info(default_cmd="cat /etc/os-release"):