From 97283c9d796d3fe3e47309e3a5a142689a997fbb Mon Sep 17 00:00:00 2001 From: Florian Sattler Date: Mon, 27 Nov 2023 14:00:23 +0100 Subject: [PATCH] Apply suggestions from code review --- varats-core/varats/report/linux_perf_report.py | 1 - 1 file changed, 1 deletion(-) diff --git a/varats-core/varats/report/linux_perf_report.py b/varats-core/varats/report/linux_perf_report.py index 97f50059d..10e661dff 100644 --- a/varats-core/varats/report/linux_perf_report.py +++ b/varats-core/varats/report/linux_perf_report.py @@ -66,7 +66,6 @@ def __parse_ctx_switches(line: str) -> int: @staticmethod def __parse_branch_misses(line: str) -> int: - # TODO: fix return type if line.startswith(""): return np.NaN return int(line.split(" ")[0].replace(",", ""))