Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Nov 7, 2023
1 parent 96355f0 commit ac6d181
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ impl RawDeltaTable {
.with_writer_properties(
WriterProperties::builder()
.set_compression(compress)
.build(),
.build()
);

if let Some(size) = target_size {
Expand Down Expand Up @@ -388,7 +388,7 @@ impl RawDeltaTable {
max_concurrent_tasks: Option<usize>,
max_spill_size: usize,
min_commit_interval: Option<u64>,
compression: Option<&str>,
compression: &str,
) -> PyResult<String> {
let mut compress: Compression = compression.parse().unwrap();

Expand All @@ -399,7 +399,7 @@ impl RawDeltaTable {
.with_writer_properties(
WriterProperties::builder()
.set_compression(compress)
.build(),
.build()
);
if let Some(size) = target_size {
cmd = cmd.with_target_size(size);
Expand Down

0 comments on commit ac6d181

Please sign in to comment.