Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Qqwy committed Jul 28, 2023
1 parent cfe8e5b commit 46c1cd3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/polars-io/src/cloud/adaptors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,7 @@ impl CloudWriter {
async fn build_writer(
object_store: &Arc<dyn ObjectStore>,
path: &Path,
) -> object_store::Result<(
MultipartId,
Box<dyn AsyncWrite + Send + Unpin>,
)> {
) -> object_store::Result<(MultipartId, Box<dyn AsyncWrite + Send + Unpin>)> {
let (multipart_id, s3_writer) = object_store.put_multipart(path).await?;
Ok((multipart_id, s3_writer))
}
Expand Down

0 comments on commit 46c1cd3

Please sign in to comment.