diff --git a/benchmark/runner/zstrong_gbenchmarks.py b/benchmark/runner/zstrong_gbenchmarks.py index 39cbf1007..e08430d33 100644 --- a/benchmark/runner/zstrong_gbenchmarks.py +++ b/benchmark/runner/zstrong_gbenchmarks.py @@ -228,6 +228,7 @@ def from_scuba_latest_dev(cls): return cls.from_scuba("zstrong_benchmarks", "raw", filters={"run_id": run_id}) def to_markdown(self) -> str: + # pyrefly: ignore [missing-attribute] md = self.results.to_markdown(showindex=False).replace("|:--", "|---") if md is None: raise RuntimeError("Unable to create markdown, tabulate might be missing") @@ -462,5 +463,7 @@ def run(self) -> ZstrongGoogleBenchmarkResults: result = result.append(curr_result) else: result = curr_result + # pyrefly: ignore [missing-attribute] result.set_timestamp() + # pyrefly: ignore [bad-return] return result