From e911ccd490fa67643cbbae9b65024675523e1100 Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Sun, 12 Jul 2026 10:26:26 +0300 Subject: [PATCH] fix: remove unused ruff noqa --- meshmode/dof_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshmode/dof_array.py b/meshmode/dof_array.py index 9ce139c9..d24dfe27 100644 --- a/meshmode/dof_array.py +++ b/meshmode/dof_array.py @@ -436,7 +436,7 @@ def _raise_index_inconsistency(i, stream_i): return type(template)( template.array_context, # NOTE: tuple([]) is faster, and this is a cost-sensitive code path. - data=tuple([v for _i, v in iterable])) # noqa: C409 + data=tuple([v for _i, v in iterable])) @with_array_context.register(DOFArray)