Skip to content

Commit 17f5680

Browse files
committed
doc: fix print that breaks doc
1 parent 6066ec3 commit 17f5680

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/plot_matrixmult.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787

8888
base_comm = MPI.COMM_WORLD
8989
comm, rank, row_id, col_id, is_active = MPIMatrixMult.active_grid_comm(base_comm, N, M)
90-
print(f"Process {base_comm.Get_rank()} is {"active" if is_active else "inactive"}")
90+
print(f"Process {base_comm.Get_rank()} is {'active' if is_active else 'inactive'}")
9191
if not is_active: exit(0)
9292

9393
# Create sub‐communicators

0 commit comments

Comments
 (0)