Skip to content

Commit 4b4fa28

Browse files
committed
fmt
1 parent 827072d commit 4b4fa28

File tree

1 file changed

+3
-2
lines changed
  • datafusion/src/datasource/object_store

1 file changed

+3
-2
lines changed

datafusion/src/datasource/object_store/local.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,17 @@
1717

1818
//! Object store that represents the Local File System.
1919
20+
use std::fs::Metadata;
21+
use std::sync::Arc;
22+
2023
use async_trait::async_trait;
2124
use futures::{stream, AsyncRead, StreamExt};
22-
use std::sync::Arc;
2325

2426
use crate::datasource::object_store::{
2527
FileMeta, FileMetaStream, ObjectReader, ObjectStore,
2628
};
2729
use crate::error::DataFusionError;
2830
use crate::error::Result;
29-
use std::fs::Metadata;
3031

3132
#[derive(Debug)]
3233
/// Local File System as Object Store.

0 commit comments

Comments
 (0)