Skip to content

Commit

Permalink
Merge branch 'main' into production-pilot
Browse files Browse the repository at this point in the history
  • Loading branch information
MTCam committed Jul 26, 2024
2 parents e733704 + 52db913 commit ea7aa6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meshmode/mesh/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1620,7 +1620,7 @@ def make_mesh_grid(
meshes = []

for index in product(*(range(n) for n in shape)):
b = sum([i * o for i, o in zip(index, offset)], offset[0])
b = sum((i * o for i, o in zip(index, offset)), offset[0])
meshes.append(affine_map(mesh, b=b))

return merge_disjoint_meshes(meshes, skip_tests=skip_tests)
Expand Down

0 comments on commit ea7aa6b

Please sign in to comment.