Skip to content

Commit d97a3fd

Browse files
committed
cargo fmt
1 parent 5336115 commit d97a3fd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

iceberg-rust/src/table/transaction/operation.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,15 +154,17 @@ impl Operation {
154154
.with_format_version(table_metadata.format_version)
155155
.with_status(Status::Added)
156156
.with_data_file(data_file)
157-
.build().map_err(Error::from)
157+
.build()
158+
.map_err(Error::from)
158159
});
159160

160161
let new_deletefile_iter = delete_files.into_iter().map(|data_file| {
161162
ManifestEntry::builder()
162163
.with_format_version(table_metadata.format_version)
163164
.with_status(Status::Added)
164165
.with_data_file(data_file)
165-
.build().map_err(Error::from)
166+
.build()
167+
.map_err(Error::from)
166168
});
167169

168170
let snapshot_id = generate_snapshot_id();

0 commit comments

Comments
 (0)