We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 961ba16 commit 5487208Copy full SHA for 5487208
src/dataframe.rs
@@ -1056,7 +1056,7 @@ impl PyDataFrame {
1056
1057
// Instantiate pyarrow Table object and use its from_batches method
1058
let table_class = py.import("pyarrow")?.getattr("Table")?;
1059
- let table: PyObject = table_class.call_method1("from_batches", args)?.into();
+ let table: Py<PyAny> = table_class.call_method1("from_batches", args)?.into();
1060
Ok(table)
1061
}
1062
0 commit comments