Skip to content

Commit 3a1eccb

Browse files
committed
refactor: reorder imports in indexed_field.rs for clarity
* Adjusted the order of imports in indexed_field.rs to improve readability and maintain consistency with project conventions.
1 parent cb90d92 commit 3a1eccb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/expr/indexed_field.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
use crate::expr::PyExpr;
18+
use std::fmt::{Display, Formatter};
19+
1920
use datafusion::logical_expr::expr::{GetFieldAccess, GetIndexedField};
2021
use pyo3::prelude::*;
21-
use std::fmt::{Display, Formatter};
2222

2323
use super::literal::PyLiteral;
24+
use crate::expr::PyExpr;
2425

2526
#[pyclass(frozen, name = "GetIndexedField", module = "datafusion.expr", subclass)]
2627
#[derive(Clone)]

0 commit comments

Comments
 (0)