Skip to content

Commit

Permalink
Merge branch 'kyle/arrow-ffi-copy' of github.com:kylebarron/arrow-rs …
Browse files Browse the repository at this point in the history
…into kyle/arrow-ffi-copy
  • Loading branch information
kylebarron committed Nov 13, 2023
2 parents e109c1a + 8a1a05e commit 3b95ebc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arrow/src/pyarrow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ fn validate_pycapsule(capsule: &PyCapsule, name: &str) -> PyResult<()> {
let capsule_name = capsule_name.unwrap().to_str()?;
if capsule_name != name {
return Err(PyValueError::new_err(format!(
"Expected name '{}' in PyCapsule.",
name,
"Expected name '{}' in PyCapsule, instead got '{}'",
name, capsule_name
)));
}

Expand Down

0 comments on commit 3b95ebc

Please sign in to comment.