From d71f1a48965644e05b9e7cc3aa69a7be20bbc3d0 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 20 Feb 2026 22:08:15 -0600 Subject: [PATCH] Fix lints for ruff 0.15.2 --- array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array.py b/array.py index 52f58ff..49ee2b3 100644 --- a/array.py +++ b/array.py @@ -151,7 +151,7 @@ def get_common_dtype(obj1: ArrayIsh, obj2: ArrayIsh, raise RuntimeError("numpy's as_strided is broken") as_strided = _as_strided -except Exception: +except Exception: # noqa: BLE001 # stolen from numpy to be compatible with older versions of numpy class _DummyArray: """ Dummy object that just exists to hang __array_interface__ dictionaries