Skip to content

Commit 99c79d8

Browse files
authored
Remove unnecessary print statement from steps-blending (#281)
I noticed that I left a print statement in the Seed et al. (2013) weights. That can be removed.
1 parent 07c25f1 commit 99c79d8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pysteps/blending/steps.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1440,7 +1440,6 @@ def calculate_weights_spn(correlations, cov):
14401440
if isinstance(cov, type(None)):
14411441
raise ValueError("cov must contain a covariance matrix")
14421442
else:
1443-
print(cov)
14441443
# Make a numpy matrix out of cov and get the inverse
14451444
cov = np.where(cov == 0.0, 10e-5, cov)
14461445
# Make sure the determinant of the matrix is not zero, otherwise

0 commit comments

Comments
 (0)