Skip to content

Commit 685b598

Browse files
authored
Remove deprecated arguments
in call to steps method
1 parent 9e0c0d3 commit 685b598

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

examples/ensemble_verification.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@
6262
"n_cascade_levels" : [6],
6363
"noise_adjustment" : [True],
6464
"conditional" : [False],
65-
"precip_mask" : [True],
6665
"mask_method" : ["incremental"], # obs, incremental, sprog
67-
"prob_matching" : [True],
6866
}
6967

7068
# Conditional parameters
@@ -252,9 +250,7 @@ def export(X):
252250
noise_method=p["noise_method"],
253251
noise_stddev_adj=p["noise_adjustment"],
254252
ar_order=p["ar_order"],conditional=p["conditional"],
255-
use_probmatching=p["prob_matching"],
256-
mask_method=p["mask_method"],
257-
use_precip_mask=p["precip_mask"], callback=export,
253+
mask_method=p["mask_method"], callback=export,
258254
return_output=False, seed=p["seed"])
259255

260256
## save results

0 commit comments

Comments
 (0)