From 4f10de274d7fd36c0c2df3a1da40a9733cee215e Mon Sep 17 00:00:00 2001 From: Icxolu <10486322+Icxolu@users.noreply.github.com> Date: Thu, 5 Dec 2024 22:16:14 +0100 Subject: [PATCH] fix lint --- src/array.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/array.rs b/src/array.rs index 81ad3104..4d69aba8 100644 --- a/src/array.rs +++ b/src/array.rs @@ -117,7 +117,7 @@ pub type PyArray6 = PyArray; pub type PyArrayDyn = PyArray; /// Returns a handle to NumPy's multiarray module. -pub fn get_array_module<'py>(py: Python<'py>) -> PyResult> { +pub fn get_array_module<'py>(py: Python<'py>) -> PyResult> { PyModule::import(py, npyffi::array::mod_name(py)?) }