Skip to content

Commit c469e4c

Browse files
authored
Merge pull request #152 from mrava87/doc-fixprint
doc: fix print that breaks doc
2 parents 6066ec3 + 17f5680 commit c469e4c

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)