Skip to content

Commit cadc2ce

Browse files
formatting
1 parent aba7462 commit cadc2ce

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

native/explorer/src/dataframe/io.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use std::fs::File;
2121
use std::io::{BufReader, BufWriter, Cursor, Write};
2222
use std::sync::Arc;
2323

24-
use crate::datatypes::{ExParquetCompression, ExQuoteStyle, ExS3Entry, ExGCSEntry, ExSeriesDtype};
24+
use crate::datatypes::{ExGCSEntry, ExParquetCompression, ExQuoteStyle, ExS3Entry, ExSeriesDtype};
2525
use crate::{ExDataFrame, ExplorerError};
2626

2727
#[cfg(feature = "cloud")]
@@ -890,8 +890,8 @@ pub fn df_to_ndjson_cloud(_data: ExDataFrame, _ex_entry: ExS3Entry) -> Result<()
890890
#[cfg(feature = "gcp")]
891891
fn build_gcs_cloud_writer(ex_entry: ExGCSEntry) -> Result<CloudWriter, ExplorerError> {
892892
let config = ex_entry.config;
893-
let mut gcs_builder = object_store::gcp::GoogleCloudStorageBuilder::new()
894-
.with_bucket_name(&config.bucket);
893+
let mut gcs_builder =
894+
object_store::gcp::GoogleCloudStorageBuilder::new().with_bucket_name(&config.bucket);
895895

896896
if let Some(credentials) = &config.credentials {
897897
gcs_builder = gcs_builder.with_service_account_key(credentials);

native/explorer/src/lazyframe/io.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::io::BufWriter;
44
use std::num::NonZeroUsize;
55

66
use crate::dataframe::io::schema_from_dtypes_pairs;
7-
use crate::datatypes::{ExParquetCompression, ExQuoteStyle, ExS3Entry, ExGCSEntry, ExSeriesDtype};
7+
use crate::datatypes::{ExGCSEntry, ExParquetCompression, ExQuoteStyle, ExS3Entry, ExSeriesDtype};
88
use crate::{ExLazyFrame, ExplorerError};
99

1010
#[rustler::nif]

0 commit comments

Comments
 (0)