Skip to content

Commit d36f33d

Browse files
committed
Remove debugging statements
1 parent 032ff40 commit d36f33d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/dataframe.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -869,17 +869,14 @@ impl PyDataFrame {
869869
/// Convert to Arrow Array
870870
/// Collect the batches and pass to Arrow Array
871871
fn to_arrow_array(&self, py: Python<'_>) -> PyResult<PyObject> {
872-
println!("Converting to Arrow table");
873872
let table = self.to_arrow_table(py)?;
874-
println!("Table");
875873
let args = table.getattr(py, "column_names")?;
876874
let column_names = args.extract::<Bound<PyList>>(py)?;
877875
if column_names.len() != 1 {
878876
return Err(PyValueError::new_err(
879877
"to_arrow_array only supports single column DataFrames",
880878
));
881879
}
882-
print!("Args");
883880
let column_name = column_names.get_item(0)?;
884881
let array: PyObject = table.call_method1(py, "column", (column_name,))?;
885882
Ok(array)

0 commit comments

Comments
 (0)