We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b423736 commit 4f10de2Copy full SHA for 4f10de2
src/array.rs
@@ -117,7 +117,7 @@ pub type PyArray6<T> = PyArray<T, Ix6>;
117
pub type PyArrayDyn<T> = PyArray<T, IxDyn>;
118
119
/// Returns a handle to NumPy's multiarray module.
120
-pub fn get_array_module<'py>(py: Python<'py>) -> PyResult<Bound<'_, PyModule>> {
+pub fn get_array_module<'py>(py: Python<'py>) -> PyResult<Bound<'py, PyModule>> {
121
PyModule::import(py, npyffi::array::mod_name(py)?)
122
}
123
0 commit comments