From 13f8719ee2f28d8345a434f85558e35b94dcdde0 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Wed, 14 Aug 2024 14:00:23 -0400 Subject: [PATCH] fix rust linting --- src/core/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/lib.rs b/src/core/lib.rs index ff3460e2596..0016cdfece6 100644 --- a/src/core/lib.rs +++ b/src/core/lib.rs @@ -1,6 +1,6 @@ use pyo3::prelude::*; #[pymodule] -fn _core(m: &Bound<'_, PyModule>) -> PyResult<()> { +fn _core(_: &Bound<'_, PyModule>) -> PyResult<()> { Ok(()) }