diff options
author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2020-06-21 03:34:22 +0200 |
---|---|---|
committer | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2020-06-21 03:34:32 +0200 |
commit | d01648d637a350af0cb81470f956cc5edd18a9a4 (patch) | |
tree | 348d75fe9d3e63fd4bb8ff2506db6606a12e56fd /etc/ci/performance/submit_to_perfherder.py | |
parent | c953931621679f37fa31a1dc5f00ebb9f0c204e0 (diff) | |
download | servo-d01648d637a350af0cb81470f956cc5edd18a9a4.tar.gz servo-d01648d637a350af0cb81470f956cc5edd18a9a4.zip |
Fix remaining flake8 warnings
Diffstat (limited to 'etc/ci/performance/submit_to_perfherder.py')
-rw-r--r-- | etc/ci/performance/submit_to_perfherder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/ci/performance/submit_to_perfherder.py b/etc/ci/performance/submit_to_perfherder.py index c5d2a5fe0db..fe1ee57f86b 100644 --- a/etc/ci/performance/submit_to_perfherder.py +++ b/etc/ci/performance/submit_to_perfherder.py @@ -19,8 +19,8 @@ from runner import format_result_summary def geometric_mean(iterable): - filtered = list(filter(lambda x: x > 0, iterable)) - return (reduce(operator.mul, filtered)) ** (1.0 / len(filtered)) + filtered = list(filter(lambda x: x > 0, iterable)) + return (reduce(operator.mul, filtered)) ** (1.0 / len(filtered)) def format_testcase_name(name): |