Skip to content

Commit

Permalink
yet more formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
eeroel committed Sep 8, 2023
1 parent 5dfdef4 commit 41cfafb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ impl RawDeltaTable {
builder = builder.without_files()
}
if let Some(buf_size) = log_buffer_size {
builder = builder.with_log_buffer_size(buf_size).map_err(PythonError::from)?;
builder = builder
.with_log_buffer_size(buf_size)
.map_err(PythonError::from)?;
}

let table = rt()?.block_on(builder.load()).map_err(PythonError::from)?;
Expand Down

0 comments on commit 41cfafb

Please sign in to comment.