From 7e298c025da08d0de096df3fcac7c8fafac9f5c2 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Tue, 27 Aug 2019 17:11:21 +0200 Subject: remove verbosity argument from hooks --- src/benchmarks/larson.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/benchmarks/larson.py') diff --git a/src/benchmarks/larson.py b/src/benchmarks/larson.py index 642901b..234f7b1 100644 --- a/src/benchmarks/larson.py +++ b/src/benchmarks/larson.py @@ -28,7 +28,8 @@ class BenchmarkLarson(Benchmark): self.requirements = ["larson"] super().__init__() - def process_output(self, result, stdout, stderr, target, perm, verbose): + @staticmethod + def process_output(result, stdout, stderr, target, perm): for line in stdout.splitlines(): res = THROUGHPUT_RE.match(line) if res: -- cgit v1.2.3