From e66f13223fcb3e7ceb1d3b3cbc612edf5d7101b1 Mon Sep 17 00:00:00 2001 From: James Bayley <36523314+jamesbayley@users.noreply.github.com> Date: Fri, 3 May 2024 19:20:48 +0000 Subject: [PATCH] Remove redundant attribute --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) 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(())