diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-11 16:47:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-11 16:47:42 -0400 |
commit | 82dc1b8e59891a7ca0f1a5e67a3db952b918561c (patch) | |
tree | e958c5d7bff81a4f218ad81b5e7b56451213d60a /tools/benchmark.py | |
parent | ad11f2ad6aae758e67734d60f068285fb5e10655 (diff) |
Upgrade pylint (#2917)
depot_tools is removing pylint from its distribution so we must maintain
our own copy.
Diffstat (limited to 'tools/benchmark.py')
-rwxr-xr-x | tools/benchmark.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/benchmark.py b/tools/benchmark.py index d6c45259d..3c9875d6a 100755 --- a/tools/benchmark.py +++ b/tools/benchmark.py @@ -11,14 +11,14 @@ import sys import json import time import shutil +import tempfile +import subprocess from util import find_exts, root_path, run, run_output from util import build_path, executable_suffix -import tempfile -import http_server -import throughput_benchmark -from http_benchmark import http_benchmark import prebuilt -import subprocess +from http_benchmark import http_benchmark +import throughput_benchmark +import http_server # The list of the tuples of the benchmark name and arguments exec_time_benchmarks = [ |