Skip to content

Commit

Permalink
remove comma
Browse files Browse the repository at this point in the history
  • Loading branch information
mcw92 authored Sep 13, 2024
1 parent c9d70a8 commit 4edef21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion propulate/propulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def propulate(self, logging_interval: int = 10, debug: int = -1) -> None:
self.propulate_comm.barrier()

def _intra_send_cleanup(self) -> None:
"""Delete all send buffers, that have been sent."""
"""Delete all send buffers that have been sent."""
completed = MPI.Request.Testsome(self.intra_requests)
# Remove requests and buffers of complete send operations.
self.intra_requests = [r for i, r in enumerate(self.intra_requests) if i not in completed]
Expand Down

0 comments on commit 4edef21

Please sign in to comment.