Skip to content

Commit

Permalink
remove dbg oops
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Oct 8, 2024
1 parent 520a6b4 commit b1a8d9b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions crates/polars-core/src/frame/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,6 @@ impl DataFrame {
.max()
.unwrap_or(1);

dbg!(broadcast_len);

for col in &mut columns {
// Length not equal to the broadcast len, needs broadcast or is an error.
let len = col.len();
Expand All @@ -345,12 +343,8 @@ impl DataFrame {
}
}

dbg!(&columns);

let length = if columns.is_empty() { 0 } else { broadcast_len };

dbg!(length);

Ok(unsafe { DataFrame::new_no_checks(length, columns) })
}

Expand Down

0 comments on commit b1a8d9b

Please sign in to comment.