Revert "Fix for module level import not at top of file"

This reverts commit 47375aa789dcb11ba969895f61dfb12a773e2164.

Signed-off-by: George Keishing <gkeishin@in.ibm.com>
Change-Id: Icc40562b861262d8fb72d68b43654334985eea4d
diff --git a/syslib/utils_os.py b/syslib/utils_os.py
index fe97de5..2026d95 100755
--- a/syslib/utils_os.py
+++ b/syslib/utils_os.py
@@ -4,14 +4,14 @@
 This file contains utilities associated with the host OS.
 """
 
-import bmc_ssh_utils
-import var_funcs
-
 import sys
 import os
 
 sys.path.append(os.path.join(os.path.dirname(__file__), "../lib"))
 
+import bmc_ssh_utils
+import var_funcs
+
 
 def get_os_release_info(default_cmd="cat /etc/os-release"):
     r"""