Skip to content

Commit 4b6705f

Browse files
alexfiklinducer
authored andcommitted
fix: remove unused ruff noqa
1 parent 8216109 commit 4b6705f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meshmode/dof_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ def _raise_index_inconsistency(i, stream_i):
436436
return type(template)(
437437
template.array_context,
438438
# NOTE: tuple([]) is faster, and this is a cost-sensitive code path.
439-
data=tuple([v for _i, v in iterable])) # noqa: C409
439+
data=tuple([v for _i, v in iterable]))
440440

441441

442442
@with_array_context.register(DOFArray)

0 commit comments

Comments
 (0)