diff options
Diffstat (limited to 'src/benchmarks/larson.py')
| -rw-r--r-- | src/benchmarks/larson.py | 3 |
1 files changed, 2 insertions, 1 deletions
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: |
