Skip to content

Commit 8f42339

Browse files
committed
fix: cargo fmt --all -- --check
1 parent 1ad8b7b commit 8f42339

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

examples/delta/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727

2828
fn main() {
2929
todo!("Delta target is not yet implemented.")
30-
}
30+
}

examples/iceberg/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727

2828
fn main() {
2929
todo!("Iceberg target is not yet implemented.")
30-
}
30+
}

examples/parquet/src/cli.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -122,16 +122,16 @@ impl Cli {
122122
schema,
123123
out_file,
124124
} => ParquetConverter::builder()
125-
.with_in_file(in_file.to_path_buf())
126-
.with_schema(schema.to_path_buf())
127-
.with_out_file(out_file.to_path_buf())
128-
.with_num_threads(n_threads)
129-
.with_read_buffer_size(read_buffer_size)
130-
.with_thread_channel_capacity(self.thread_channel_capacity)
131-
.try_build()?
132-
.try_convert()?,
125+
.with_in_file(in_file.to_path_buf())
126+
.with_schema(schema.to_path_buf())
127+
.with_out_file(out_file.to_path_buf())
128+
.with_num_threads(n_threads)
129+
.with_read_buffer_size(read_buffer_size)
130+
.with_thread_channel_capacity(self.thread_channel_capacity)
131+
.try_build()?
132+
.try_convert()?,
133133
};
134134

135135
Ok(())
136136
}
137-
}
137+
}

examples/parquet/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ fn main() {
4747
Ok(_) => info!("All done, bye! 🦖"),
4848
Err(e) => error!("{}", e),
4949
}
50-
}
50+
}

0 commit comments

Comments
 (0)