Skip to content

Commit

Permalink
remove stray dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikalii committed Jan 10, 2024
1 parent e392bea commit 2bea80b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/grid_fmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,6 @@ fn fmt_array<T: GridFmt + ArrayValue>(shape: &[usize], data: &[T], metagrid: &mu
let row_shape = &shape[1..];
let cell_size = data.len() / cell_count;
let row_height: usize = row_shape.iter().rev().skip(1).product();
dbg!(row_height);
for (i, cell) in data.chunks(cell_size).enumerate() {
if i > 0 && rank > 2 {
for _ in 0..rank - 2 {
Expand Down

0 comments on commit 2bea80b

Please sign in to comment.