Skip to content

Commit

Permalink
return
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Nov 13, 2023
1 parent 92b070a commit 6460701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow/src/pyarrow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ impl FromPyArrow for ArrayData {
let schema_ptr = unsafe { schema_capsule.reference::<FFI_ArrowSchema>() };
let array_ptr = unsafe { array_capsule.reference::<FFI_ArrowArray>() };

ffi::from_ffi(array_ptr.copy(), schema_ptr).map_err(to_py_err)
return ffi::from_ffi(array_ptr.copy(), schema_ptr).map_err(to_py_err);
}

validate_class("Array", value)?;
Expand Down

0 comments on commit 6460701

Please sign in to comment.