(command: &str, value: &str)
| 3422 | } |
| 3423 | |
| 3424 | fn parse_required_f64_arg(command: &str, value: &str) -> anyhow::Result<f64> { |
| 3425 | parse_f64_arg(value) |
| 3426 | .ok_or_else(|| anyhow::anyhow!("{command} expected a finite number, got {value:?}.")) |
| 3427 | } |
| 3428 | |
| 3429 | fn clean_cli_args(args: Vec<String>) -> Vec<String> { |
| 3430 | args.into_iter() |
no test coverage detected