(args: Bound<'py, PyList>)
| 69 | #[pyfunction] |
| 70 | #[pyo3(name = "run_splashsurf")] |
| 71 | fn run_splashsurf_py<'py>(args: Bound<'py, PyList>) -> PyResult<()> { |
| 72 | cli::run_splashsurf(args.iter().map(|arg| { |
| 73 | arg.cast::<PyString>() |
| 74 | .expect("argument wasn't a string") |
| 75 | .extract::<String>() |
| 76 | .unwrap() |
| 77 | }))?; |
| 78 | Ok(()) |
| 79 | } |
| 80 | |
| 81 | define_stub_info_gatherer!(stub_info); |
nothing calls this directly
no test coverage detected