Skip to content

Commit

Permalink
Ignore false-positive use-before-assign warnings from pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed May 21, 2024
1 parent 279d40b commit 4d6e901
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions meshmode/discretization/connection/face.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def make_face_restriction(actx, discr, group_factory, boundary_tag,

face_unit_nodes = face.map_to_volume(bdry_unit_nodes)
resampling_mat = mp.resampling_matrix(
vol_basis,
vol_basis, # pylint: disable=possibly-used-before-assignment
face_unit_nodes, mgrp.unit_nodes)

# }}}
Expand All @@ -321,11 +321,11 @@ def make_face_restriction(actx, discr, group_factory, boundary_tag,
# Find vertex_indices
glob_face_vertices = mgrp.vertex_indices[
batch_boundary_el_numbers_in_grp][:, face.volume_vertex_indices]
vertex_indices[new_el_numbers] = \
vol_to_bdry_vertices[glob_face_vertices]
vertex_indices[new_el_numbers] = ( # pylint: disable=possibly-used-before-assignment # noqa: E501
vol_to_bdry_vertices[glob_face_vertices])

# Find nodes
nodes[:, new_el_numbers, :] = np.einsum(
nodes[:, new_el_numbers, :] = np.einsum( # pylint: disable=possibly-used-before-assignment # noqa: E501
"ij,dej->dei",
resampling_mat,
mgrp.nodes[:, batch_boundary_el_numbers_in_grp, :])
Expand Down

0 comments on commit 4d6e901

Please sign in to comment.