diff --git a/src/lib.rs b/src/lib.rs index fe65afa..c67f779 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,7 +10,6 @@ fn sum_as_string(a: usize, b: usize) -> PyResult { /// the `lib.name` setting in the `Cargo.toml`, else Python will not be able to /// import the module. #[pymodule] -#[pyo3(name="gazelle")] fn gazelle(m: &Bound<'_, PyModule>) -> PyResult<()> { m.add_function(wrap_pyfunction!(sum_as_string, m)?)?; Ok(())