From c49ef842debff171bf0edc6f714aa8e466054bf1 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Mon, 2 Feb 2026 18:29:04 -0600 Subject: [PATCH] Address typos CI failure --- examples/laplace-dirichlet-3d.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/laplace-dirichlet-3d.py b/examples/laplace-dirichlet-3d.py index 5b3358eba..3273b8cc8 100644 --- a/examples/laplace-dirichlet-3d.py +++ b/examples/laplace-dirichlet-3d.py @@ -49,8 +49,8 @@ def main(mesh_name="torus", visualize=False): affine_map( base_mesh, A=np.diag([1, 1, 1]), - b=np.array([0, 0, iz*dz])) - for iz in range(nz)] + b=np.array([0, 0, idx_z*dz])) + for idx_z in range(nz)] mesh = merge_disjoint_meshes(meshes, single_group=True)