Skip to content

Commit

Permalink
remove unneeded comment
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyStegeman committed Nov 14, 2024
1 parent c7a85f9 commit cc76aa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yadism/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def replace_nans_with_0(self, out):
# `values` is a tuple containing the computed values and the integration error
for tup in range(2):
# Set any NaN or inf values in the array to 0
values[tup][~np.isfinite(values[tup])] = 0.0 # Computed value
values[tup][~np.isfinite(values[tup])] = 0.0
return out2

def get_result(self):
Expand Down

0 comments on commit cc76aa3

Please sign in to comment.