summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2016-10-26 11:29:28 -0700
committerGitHub <noreply@github.com>2016-10-26 11:29:28 -0700
commitbe9de0645a10d16a2de007d97429d775adf3d178 (patch)
tree51afbf240a9a01a5d137999572e97ff9472afc61 /scripts
parente963b31c815193ade24334c142f9aab94a4dd9c7 (diff)
downloadwabt-be9de0645a10d16a2de007d97429d775adf3d178.tar.gz
wabt-be9de0645a10d16a2de007d97429d775adf3d178.tar.bz2
wabt-be9de0645a10d16a2de007d97429d775adf3d178.zip
Move import to top of Python file (#191)
Move import to top of Python file, and remove extra blank lines to satisfy Appveyor's version of flake8
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen-emscripten-exported-json.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gen-emscripten-exported-json.py b/scripts/gen-emscripten-exported-json.py
index f183b036..6e563680 100755
--- a/scripts/gen-emscripten-exported-json.py
+++ b/scripts/gen-emscripten-exported-json.py
@@ -21,6 +21,8 @@ import os
import re
import sys
+from utils import Executable, Error
+
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
ROOT_DIR = os.path.dirname(SCRIPT_DIR)
TEST_DIR = os.path.join(ROOT_DIR, 'test')
@@ -28,8 +30,6 @@ DEFAULT_EMSCRIPTEN_DIR = os.path.join(ROOT_DIR, 'emscripten')
sys.path.append(TEST_DIR)
-from utils import Executable, Error
-
def FindFiles(cmake_build_dir):
result = []