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/prop_call.py b/bin/prop_call.py
index e167fa5..15cff57 100755
--- a/bin/prop_call.py
+++ b/bin/prop_call.py
@@ -16,18 +16,18 @@
 my_program --test_mode=y --quiet=n file1 file2 file3
 """
 
-from gen_arg import *
-from gen_print import *
-from gen_valid import *
-from gen_misc import *
-from gen_cmd import *
-
 import sys
 import os
 
 save_path_0 = sys.path[0]
 del sys.path[0]
 
+from gen_arg import *
+from gen_print import *
+from gen_valid import *
+from gen_misc import *
+from gen_cmd import *
+
 # Restore sys.path[0].
 sys.path.insert(0, save_path_0)