From 6b9926f0724ca8d1d877ad16cff2e5dd0d12556b Mon Sep 17 00:00:00 2001 From: Felix Hekhorn Date: Tue, 23 Apr 2024 17:30:23 +0300 Subject: [PATCH] Drop useless asignment --- benchmarks/bench_evolve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/bench_evolve.py b/benchmarks/bench_evolve.py index 9b391ae2..f6423560 100644 --- a/benchmarks/bench_evolve.py +++ b/benchmarks/bench_evolve.py @@ -95,7 +95,7 @@ def benchmark_dglap(tmp_path, test_files, test_configs): new_op = eko.io.runcards.OperatorCard.from_dict(myopcard) eko_path = pathlib.Path(tmp_path / "test_eko.tar") - _ = eko.runner.solve(new_theory, new_op, eko_path) + eko.runner.solve(new_theory, new_op, eko_path) def benchmark_evolve_grid(tmp_path, lhapdf_path, test_files, test_pdf):