Skip to content

Commit

Permalink
Remove unnecessary print statement from steps-blending (#281)
Browse files Browse the repository at this point in the history
I noticed that I left a print statement in the Seed et al. (2013) weights. That can be removed.
  • Loading branch information
RubenImhoff committed Apr 28, 2022
1 parent 07c25f1 commit 99c79d8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pysteps/blending/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,6 @@ def calculate_weights_spn(correlations, cov):
if isinstance(cov, type(None)):
raise ValueError("cov must contain a covariance matrix")
else:
print(cov)
# Make a numpy matrix out of cov and get the inverse
cov = np.where(cov == 0.0, 10e-5, cov)
# Make sure the determinant of the matrix is not zero, otherwise
Expand Down

0 comments on commit 99c79d8

Please sign in to comment.