Skip to content

Commit 4f10de2

Browse files
committed
fix lint
1 parent b423736 commit 4f10de2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ pub type PyArray6<T> = PyArray<T, Ix6>;
117117
pub type PyArrayDyn<T> = PyArray<T, IxDyn>;
118118

119119
/// Returns a handle to NumPy's multiarray module.
120-
pub fn get_array_module<'py>(py: Python<'py>) -> PyResult<Bound<'_, PyModule>> {
120+
pub fn get_array_module<'py>(py: Python<'py>) -> PyResult<Bound<'py, PyModule>> {
121121
PyModule::import(py, npyffi::array::mod_name(py)?)
122122
}
123123

0 commit comments

Comments
 (0)