Skip to content

Commit 3c09737

Browse files
committed
removed print
1 parent 1d6f3f6 commit 3c09737

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/loaders/parquet/parse_params.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ use regex::Regex;
1010
/// A vector of Polars with the selected columns.
1111
pub fn parse_columns_from_params_to_str(params: &HashMap<String, String>) -> Option<Vec<String>> {
1212
// Parse columns from params
13-
println!("Params: {:?}", params);
14-
13+
1514
// Initialize a set of columns to return
1615
let mut select_cols = if let Some(cols) = params.get("columns") {
1716
cols.split(",").map(|x| x.to_string()).collect::<Vec<_>>()

0 commit comments

Comments
 (0)