Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion meshmode/dof_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading