Skip to content

Commit 5487208

Browse files
committed
Change deprecated type
1 parent 961ba16 commit 5487208

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dataframe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1056,7 +1056,7 @@ impl PyDataFrame {
10561056

10571057
// Instantiate pyarrow Table object and use its from_batches method
10581058
let table_class = py.import("pyarrow")?.getattr("Table")?;
1059-
let table: PyObject = table_class.call_method1("from_batches", args)?.into();
1059+
let table: Py<PyAny> = table_class.call_method1("from_batches", args)?.into();
10601060
Ok(table)
10611061
}
10621062

0 commit comments

Comments
 (0)