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/throughput_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/throughput_benchmark.py')
-rwxr-xr-x | tools/throughput_benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/throughput_benchmark.py b/tools/throughput_benchmark.py index 9343d9613..725b545ba 100755 --- a/tools/throughput_benchmark.py +++ b/tools/throughput_benchmark.py @@ -8,9 +8,9 @@ import os import sys -import util import time import subprocess +import util MB = 1024 * 1024 ADDR = "127.0.0.1:4544" |