Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
orlp committed Jan 23, 2025
1 parent f7732c3 commit 29f9ca8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ use std::any::Any;
use std::ops::Add;

use arrow::array::{Array, PrimitiveArray};
use polars_compute::sum::{wrapping_sum_arr, WrappingSum};
use arrow::compute::aggregate::Sum;
use arrow::datatypes::PrimitiveType;
use arrow::types::simd::Simd;
use num_traits::NumCast;
use polars_compute::sum::{wrapping_sum_arr, WrappingSum};
use polars_core::prelude::*;

use super::*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ use std::any::Any;
use std::ops::Add;

use arrow::array::PrimitiveArray;
use polars_compute::sum::{wrapping_sum_arr, WrappingSum};
use arrow::compute::aggregate::Sum;
use arrow::types::simd::Simd;
use num_traits::NumCast;
use polars_compute::sum::{wrapping_sum_arr, WrappingSum};
use polars_core::prelude::*;

use super::*;
Expand Down
4 changes: 2 additions & 2 deletions crates/polars-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ polars-utils = { workspace = true }

ahash = { workspace = true }
arboard = { workspace = true, optional = true }
arrow = { workspace = true}
arrow = { workspace = true }
bincode = { workspace = true }
bytemuck = { workspace = true }
bytes = { workspace = true }
Expand All @@ -43,7 +43,7 @@ num-traits = { workspace = true }
numpy = { workspace = true }
once_cell = { workspace = true }
pyo3 = { workspace = true, features = ["abi3-py39", "chrono", "chrono-tz", "multiple-pymethods"] }
rayon = { workspace = true}
rayon = { workspace = true }
recursive = { workspace = true }
serde_json = { workspace = true, optional = true }
thiserror = { workspace = true }
Expand Down

0 comments on commit 29f9ca8

Please sign in to comment.