Skip to content

Commit c314bc7

Browse files
committed
cargo fmt
1 parent 4fb8e3a commit c314bc7

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
@@ -148,15 +148,17 @@ impl Operation {
148148
.with_format_version(table_metadata.format_version)
149149
.with_status(Status::Added)
150150
.with_data_file(data_file)
151-
.build().map_err(Error::from)
151+
.build()
152+
.map_err(Error::from)
152153
});
153154

154155
let new_deletefile_iter = delete_files.into_iter().map(|data_file| {
155156
ManifestEntry::builder()
156157
.with_format_version(table_metadata.format_version)
157158
.with_status(Status::Added)
158159
.with_data_file(data_file)
159-
.build().map_err(Error::from)
160+
.build()
161+
.map_err(Error::from)
160162
});
161163

162164
let snapshot_id = generate_snapshot_id();

0 commit comments

Comments
 (0)