Skip to content

Commit

Permalink
fix euclidean_3d
Browse files Browse the repository at this point in the history
  • Loading branch information
georgypv committed Jan 27, 2024
1 parent 08ba1df commit da7f0ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -504,9 +504,9 @@ fn euclidean_3d(inputs: &[Series]) -> PolarsResult<Series> {
let (x2, y2, z2) = unpack_xyz(ca2, false);

let iter = izip!(
x1.f64()?,
y1.f64()?,
z1.f64()?,
x1.f64()?,
z1.f64()?,
x2.f64()?,
y2.f64()?,
z2.f64()?
Expand Down

0 comments on commit da7f0ee

Please sign in to comment.