summaryrefslogtreecommitdiff
path: root/piglit-print-commands.py
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2016-03-30 11:18:33 -0700
committerDylan Baker <dylan@pnwbakers.com>2016-05-02 17:53:45 -0700
commitd10bc0363537da9751d0eabec41d1f8639f229f7 (patch)
tree2a048d049055cddfcf542ac8bf555f89948b1e0f /piglit-print-commands.py
parent5b6f435b8f47aaa61bf2ec3810152dedb9bc94a9 (diff)
framework: sort imports in piglit-print-commands.py
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com> Reviewed-by: Andres Gomez <agomez@igalia.com>
Diffstat (limited to 'piglit-print-commands.py')
-rwxr-xr-xpiglit-print-commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/piglit-print-commands.py b/piglit-print-commands.py
index 79bc7f5c4..f7a3be76f 100755
--- a/piglit-print-commands.py
+++ b/piglit-print-commands.py
@@ -26,14 +26,14 @@ from __future__ import (
absolute_import, division, print_function, unicode_literals
)
import argparse
-import sys
import os
+import sys
sys.path.append(os.path.dirname(os.path.realpath(sys.argv[0])))
from framework import options
from framework.programs import parsers
-import framework.profile
from framework.test import Test, GleanTest
+import framework.profile
def main():