From 00e306ec53ea2d01281e6bc634333072991963c1 Mon Sep 17 00:00:00 2001 From: Oleh Prypin Date: Thu, 10 Sep 2026 02:16:00 -0700 Subject: [PATCH] Suppress new Pyrefly findings before upgrading to v1.2.0 PiperOrigin-RevId: 979049423 --- seqio/metrics.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/seqio/metrics.py b/seqio/metrics.py index dee1dfce..94d80c24 100644 --- a/seqio/metrics.py +++ b/seqio/metrics.py @@ -184,9 +184,9 @@ def from_model_output( # pylint:disable=missing-function-docstring ) return cls( values={ # pyrefly: ignore[bad-argument-type] - "model_output": model_output, - "indices_2d": indices_2d, - "mask": mask, + "model_output": model_output, # pyrefly: ignore[bad-assignment] + "indices_2d": indices_2d, # pyrefly: ignore[bad-assignment] + "mask": mask, # pyrefly: ignore[bad-assignment] } )