Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
fahimahmedx committed Nov 28, 2023
1 parent 5f86336 commit ec904cd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion crates/cli/src/parse/blocks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ fn read_integer_column(path: &str, column: &str) -> Result<Vec<u64>, ParseError>
.unique()
.map_err(|_e| ParseError::ParseError("could not get column".to_string()))?;

println!("{:?}", series);
match series.u32() {
Ok(ca) => ca
.into_iter()
Expand Down
1 change: 0 additions & 1 deletion crates/cli/src/parse/timestamps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ fn read_integer_column(path: &str, column: &str) -> Result<Vec<u64>, ParseError>
.unique()
.map_err(|_e| ParseError::ParseError("could not get column".to_string()))?;

println!("{:?}", series);
match series.u32() {
Ok(ca) => ca
.into_iter()
Expand Down

0 comments on commit ec904cd

Please sign in to comment.