nevi-me commented on a change in pull request #9374:
URL: https://github.com/apache/arrow/pull/9374#discussion_r567891864
##########
File path: rust/arrow/src/compute/kernels/temporal.rs
##########
@@ -17,34 +17,82 @@
//! Defines temporal kernels for time and date related functions.
-use chrono::Timelike;
+use chrono::{Datelike, Timelike};
-use crate::array::*;
use crate::datatypes::*;
use crate::error::Result;
-
+use crate::{array::*, error::ArrowError};
Review comment:
nit: rust-analyzer bunches imports in an off way (assuming you're using
it). Sometimes they need reordering manually (e.g. grouping `Result` and
`ArrowError`)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]