Skip to content

Commit

Permalink
add pragma no cover
Browse files Browse the repository at this point in the history
  • Loading branch information
joselotl committed Nov 17, 2023
1 parent bb38a6c commit 382217e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rail/estimation/summarizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def _broadcast_bootstrap_matrix(self):
bootstrap_matrix = self.comm.bcast(bootstrap_matrix, root = 0)
return bootstrap_matrix

def _join_histograms(self, bvals, yvals):
def _join_histograms(self, bvals, yvals):#pragma: no cover
bvals_r = self.comm.reduce(bvals)
yvals_r = self.comm.reduce(yvals)
return(bvals_r, yvals_r)
Expand Down

0 comments on commit 382217e

Please sign in to comment.