Skip to content

Commit

Permalink
fix rust linting
Browse files Browse the repository at this point in the history
  • Loading branch information
brettlangdon committed Aug 14, 2024
1 parent 2e92d7a commit 13f8719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use pyo3::prelude::*;

#[pymodule]
fn _core(m: &Bound<'_, PyModule>) -> PyResult<()> {
fn _core(_: &Bound<'_, PyModule>) -> PyResult<()> {
Ok(())
}

0 comments on commit 13f8719

Please sign in to comment.