Skip to content

Commit

Permalink
tidy: fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
plaflamme committed Jan 31, 2023
1 parent 90681fd commit b803b6d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion polars/polars-core/src/chunked_array/arithmetic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ use std::borrow::Cow;
use std::ops::{Add, Div, Mul, Rem, Sub};

use arrow::array::PrimitiveArray;
use arrow::compute::arithmetics::{basic, decimal};
use arrow::compute::arithmetics::basic;
#[cfg(feature = "dtype-i128")]
use arrow::compute::arithmetics::decimal;
use arrow::compute::arity_assign;
use arrow::types::NativeType;
use num::{Num, NumCast, ToPrimitive};
Expand Down

0 comments on commit b803b6d

Please sign in to comment.