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/bin/obmc_ser_num b/bin/obmc_ser_num
index 8d86099..ba620c8 100755
--- a/bin/obmc_ser_num
+++ b/bin/obmc_ser_num
@@ -4,10 +4,6 @@
This program will get the system serial number from an OBMC machine and print it to stdout.
"""
-from gen_arg import *
-from gen_print import *
-from gen_valid import *
-
import sys
import os
import requests
@@ -15,6 +11,10 @@
save_path_0 = sys.path[0]
del sys.path[0]
+from gen_arg import *
+from gen_print import *
+from gen_valid import *
+
# Restore sys.path[0].
sys.path.insert(0, save_path_0)