Skip to content

Commit b426c73

Browse files
committed
clippy auto fix
1 parent 4b2e04b commit b426c73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sparsearray_conversion.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ where
4545
{
4646
let (indptr, indices, data) = cs.into_raw_storage();
4747

48-
return (
48+
(
4949
data.into_pyarray(py),
5050
indices.into_pyarray(py),
5151
indptr.into_pyarray(py),
52-
);
52+
)
5353
}
5454

5555
impl<'py, N: Element, I: SpIndex + Element, Iptr: SpIndex + Element> IntoPyObject<'py>

0 commit comments

Comments
 (0)