This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/main by this push:
     new 4d184015d7 Fix Rustfmt in arrow-cast (#8473)
4d184015d7 is described below

commit 4d184015d7ec2b76d1b3c7a34305da9b9d2d1d15
Author: Matthijs Brobbel <[email protected]>
AuthorDate: Fri Sep 26 16:44:19 2025 +0200

    Fix Rustfmt in arrow-cast (#8473)
    
    Fixes failing fmt job on main
    
(https://github.com/apache/arrow-rs/actions/runs/18039752742/job/51335266375),
    caused by https://github.com/apache/arrow-rs/pull/8453.
---
 arrow-cast/src/cast/mod.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arrow-cast/src/cast/mod.rs b/arrow-cast/src/cast/mod.rs
index ad4bf8a57c..f0e5487a66 100644
--- a/arrow-cast/src/cast/mod.rs
+++ b/arrow-cast/src/cast/mod.rs
@@ -65,7 +65,7 @@ use arrow_data::ArrayData;
 use arrow_data::transform::MutableArrayData;
 use arrow_schema::*;
 use arrow_select::take::take;
-use num_traits::{cast::AsPrimitive, NumCast, ToPrimitive};
+use num_traits::{NumCast, ToPrimitive, cast::AsPrimitive};
 
 /// CastOptions provides a way to override the default cast behaviors
 #[derive(Debug, Clone, PartialEq, Eq, Hash)]

Reply via email to