Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
yjshen committed Aug 26, 2021
1 parent 827072d commit 4b4fa28
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions datafusion/src/datasource/object_store/local.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,17 @@

//! Object store that represents the Local File System.
use std::fs::Metadata;
use std::sync::Arc;

use async_trait::async_trait;
use futures::{stream, AsyncRead, StreamExt};
use std::sync::Arc;

use crate::datasource::object_store::{
FileMeta, FileMetaStream, ObjectReader, ObjectStore,
};
use crate::error::DataFusionError;
use crate::error::Result;
use std::fs::Metadata;

#[derive(Debug)]
/// Local File System as Object Store.
Expand Down

0 comments on commit 4b4fa28

Please sign in to comment.