Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Sep 13, 2024
1 parent c9b2723 commit 801dfe0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/polars-core/src/frame/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,7 @@ impl DataFrame {
///
/// FFI buffers are included in this estimation.
pub fn estimated_size(&self) -> usize {
self.columns.iter()
.map(Column::estimated_size)
.sum()
self.columns.iter().map(Column::estimated_size).sum()
}

// Reduce monomorphization.
Expand Down

0 comments on commit 801dfe0

Please sign in to comment.