Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
sbc100 committed Mar 31, 2019
1 parent 619e61f commit 783be69
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# XXX Use EMTEST_ALL_ENGINES=1 in the env to test all engines!

from __future__ import print_function
from subprocess import Popen, PIPE, STDOUT
from subprocess import PIPE, STDOUT
import argparse
import atexit
import contextlib
Expand All @@ -37,6 +37,7 @@
import shlex
import shutil
import string
import subprocess
import sys
import tempfile
import time
Expand Down Expand Up @@ -1135,7 +1136,7 @@ def setUpClass(cls):
cmd = shlex.split(EMTEST_BROWSER)

def run_in_other_browser(url):
Popen(cmd + [url])
subprocess.Popen(cmd + [url])

webbrowser.open_new = run_in_other_browser
print("Using Emscripten browser: " + str(cmd))
Expand Down Expand Up @@ -1399,6 +1400,7 @@ def get_bullet_library(runner_core, use_cmake):
configure_args=configure_args,
cache_name_extra=configure_commands[0])


def build_library(name,
build_dir,
output_dir,
Expand Down

0 comments on commit 783be69

Please sign in to comment.