diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2016-03-30 11:18:33 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2016-05-02 17:53:45 -0700 |
commit | d10bc0363537da9751d0eabec41d1f8639f229f7 (patch) | |
tree | 2a048d049055cddfcf542ac8bf555f89948b1e0f | |
parent | 5b6f435b8f47aaa61bf2ec3810152dedb9bc94a9 (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>
-rwxr-xr-x | piglit-print-commands.py | 4 |
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(): |