Maybe a missing implementation? ```rust use pyo3::prelude::*; #[pyclass] struct Foo { array: [i32; 2] } #[pymethods] impl Foo { #[new] //pub fn new(array: [i32; 2]) -> Self { pub fn new(array: &[i32; 2]) -> Self { //Self { array } Self { array: *array } } } ```