File tree 1 file changed +0
-16
lines changed
1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -146,14 +146,6 @@ def valid_ensemble(user_input: str) -> Union[str, UUID]:
146
146
return valid_name (user_input )
147
147
148
148
149
- def valid_iter_num (user_input : str ) -> str :
150
- validator = IntegerArgument (from_value = 0 )
151
- validated = validator .validate (user_input )
152
- if validated .failed ():
153
- strip_error_message_and_raise_exception (validated )
154
- return user_input
155
-
156
-
157
149
def valid_num_iterations (user_input : str ) -> str :
158
150
validator = IntegerArgument (from_value = 1 )
159
151
validated = validator .validate (user_input )
@@ -366,14 +358,6 @@ def get_ert_parser(parser: Optional[ArgumentParser] = None) -> ArgumentParser:
366
358
default = "ensemble-experiment" ,
367
359
help = "Name of the experiment" ,
368
360
)
369
- ensemble_experiment_parser .add_argument (
370
- "--iter-num" ,
371
- type = valid_iter_num ,
372
- default = 0 ,
373
- required = False ,
374
- help = "Specification of which iteration number is about to be made. "
375
- "Use iter-num to avoid recomputing the priors." ,
376
- )
377
361
378
362
# ensemble_smoother_parser
379
363
ensemble_smoother_description = (
You can’t perform that action at this time.
0 commit comments